chore: fix up build error

This commit is contained in:
PeanutMelonSeedBigAlmond
2024-05-25 01:15:51 +08:00
parent 84745ff23b
commit 9b16aa3224

View File

@@ -37,7 +37,7 @@ android {
signingConfigs {
maybeCreate("release").apply {
val keystoreFile = File("keystore.jks")
val keystoreFile = File(projectDir, "keystore.jks")
if (!keystoreFile.exists()) return@apply
val keyAliasEnv = System.getenv("SIGNING_KEY_ALIAS") ?: return@apply
val keystorePasswordEnv = System.getenv("SIGNING_STORE_PASSWORD") ?: return@apply