Skip to content

Commit

Permalink
Merge pull request #33 from YAPP-Github/origin/feature/issue-010-debu…
Browse files Browse the repository at this point in the history
…g-keystore

[ISSUE-10] Debug 키스토어 공유
  • Loading branch information
KwonDae authored Jun 3, 2022
2 parents 258ff26 + 2e7229c commit d6207dd
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ render.experimental.xml

# Keystore files
*.jks
*.keystore

# Android Profiling
*.hprof
Expand Down
14 changes: 13 additions & 1 deletion app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,19 @@ android {
versionName = Configs.VERSION_NAME
}

signingConfigs {
getByName("debug") {
storeFile = file("$rootDir/debug.keystore")
}
}

buildTypes {
debug {
signingConfig = signingConfigs.getByName("debug")
isDebuggable = true
isMinifyEnabled = false
}

release {
isMinifyEnabled = false
proguardFiles(getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro")
Expand Down Expand Up @@ -48,7 +60,7 @@ dependencies {
app.ModuleDependencies.hilt.implement(this)
app.ModuleDependencies.hiltAndroid.implement(this)
app.ModuleDependencies.timber.implement(this)

implementation(platform(app.ModuleDependencies.FIREBASE_BOM))
implementation(app.ModuleDependencies.FIREBASE_ANALYTICS)
implementation(app.ModuleDependencies.FIREBASE_CRASHLYTICS)
Expand Down
Binary file added debug.keystore
Binary file not shown.

0 comments on commit d6207dd

Please sign in to comment.