Skip to content

Commit 987ccfe

Browse files
committed
feat(ci): add singning debug config for assembling on different agents
1 parent 9190080 commit 987ccfe

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

buildsystem/debug.keystore

2.68 KB
Binary file not shown.

sample/build.gradle.kts

+13
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,19 @@ android {
1919
animationsDisabled = true
2020
}
2121

22+
signingConfigs {
23+
create("kakao") {
24+
storeFile = File("${project.rootDir}/buildsystem/debug.keystore")
25+
storePassword = "android"
26+
keyAlias = "kakaodebugkey"
27+
keyPassword = "android"
28+
}
29+
}
30+
31+
buildTypes {
32+
debug { signingConfig = signingConfigs.getByName("kakao") }
33+
}
34+
2235
sourceSets {
2336
getByName("main") {
2437
java.srcDir("src/main/kotlin")

0 commit comments

Comments
 (0)