Skip to content

Commit

Permalink
Add write codemagic.keystore file.
Browse files Browse the repository at this point in the history
  • Loading branch information
Turskyi committed Dec 9, 2023
1 parent 50f6557 commit acd46d8
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion composeApp/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,10 @@ android {
}
register("production") {
storeFile = file(
path = "../composeApp/src/androidMain/keystore/politerai_release.keystore",
path = keystoreProperties["SIGNING_KEY_RELEASE_PATH"] as? String
?: throw IllegalStateException(
"SIGNING_KEY_RELEASE_PATH for storeFile is missing or invalid",
),
)
storePassword = keystoreProperties["SIGNING_KEY_RELEASE_PASSWORD"] as? String
?: throw IllegalStateException("storePassword is missing or invalid")
Expand Down

0 comments on commit acd46d8

Please sign in to comment.