Skip to content

Commit 3467eea

Browse files
committed
중복인 debug signing 제거
1 parent de472cb commit 3467eea

1 file changed

Lines changed: 1 addition & 7 deletions

File tree

app/build.gradle.kts

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ android {
3434
}
3535

3636
signingConfigs {
37-
val debugKeystore = rootProject.file("debug.keystore")
37+
val debugKeystore = file("$rootDir/debug.keystore")
3838
if (debugKeystore.exists()) {
3939
getByName("debug") {
4040
storeFile = debugKeystore
@@ -43,12 +43,6 @@ android {
4343
keyPassword = "android"
4444
}
4545
}
46-
getByName("debug") {
47-
storeFile = file("$rootDir/debug.keystore")
48-
storePassword = "android"
49-
keyAlias = "androiddebugkey"
50-
keyPassword = "android"
51-
}
5246
}
5347

5448
buildTypes {

0 commit comments

Comments
 (0)