From 9b16aa32241e8b5f850834aeb069ca1684d5dc96 Mon Sep 17 00:00:00 2001 From: PeanutMelonSeedBigAlmond Date: Sat, 25 May 2024 01:15:51 +0800 Subject: [PATCH] chore: fix up build error --- android/app/build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/app/build.gradle.kts b/android/app/build.gradle.kts index f042979..8ef9ac4 100644 --- a/android/app/build.gradle.kts +++ b/android/app/build.gradle.kts @@ -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