Skip to content

Commit c86642a

Browse files
committed
chore/#100: signingconfig 추가
1 parent 24b2c5f commit c86642a

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

app/build.gradle.kts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,14 @@ android {
5555
compose = true
5656
buildConfig = true
5757
}
58+
signingConfigs {
59+
getByName("debug") {
60+
keyAlias = "androiddebugkey"
61+
keyPassword = "android"
62+
storeFile = File("${project.rootDir.absolutePath}/keystore/debug.keystore")//project.rootProject.file("debug.keystore")
63+
storePassword = "android"
64+
}
65+
}
5866
}
5967

6068
dependencies {

0 commit comments

Comments
 (0)