Skip to content

Commit 5be3be0

Browse files
committed
Hopefully fix compilation errors
1 parent 44581a7 commit 5be3be0

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

app/build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -70,16 +70,16 @@ android {
7070
* property in signing.properties (converted to camelCase)
7171
*/
7272
localRelease {
73-
storeFile file(loadEnvOrProperty("KEYSTORE_PATH", "/", "app_config.properties"))
74-
storePassword loadEnvOrProperty("KEYSTORE_PWD", "", "app_config.properties")
75-
keyAlias loadEnvOrProperty("KEYSTORE_ALIAS", "", "app_config.properties")
76-
keyPassword loadEnvOrProperty("KEYSTORE_ALIAS_PWD", "", "app_config.properties")
73+
storeFile file(loadEnvOrProperty("KEYSTORE_PATH", new File(rootDir, "debug.keystore").path, "app_config.properties"))
74+
storePassword loadEnvOrProperty("KEYSTORE_PWD", "android", "app_config.properties")
75+
keyAlias loadEnvOrProperty("KEYSTORE_ALIAS", "androiddebugkey", "app_config.properties")
76+
keyPassword loadEnvOrProperty("KEYSTORE_ALIAS_PWD", "android", "app_config.properties")
7777
}
7878
}
7979

8080
buildTypes {
8181
debug {
82-
//signingConfig signingConfigs.localRelease
82+
signingConfig signingConfigs.localRelease
8383
}
8484

8585
release {

debug.keystore

1.84 KB
Binary file not shown.

0 commit comments

Comments
 (0)