fix: gradle not compiling on nightly build

This commit is contained in:
LucasGGamerM 2023-04-08 20:39:43 -03:00
parent 99ca3b7acb
commit 1e54b21842
1 changed files with 1 additions and 2 deletions

View File

@ -17,7 +17,6 @@ android {
signingConfigs {
nightly{
versionName "1.2.0+fork.moshinda@" + System.getenv("CURRENT_DATE")
storeFile = file("keystore/nightly_keystore.jks")
storePassword System.getenv("SIGNING_STORE_PASSWORD")
if (storePassword == null) {
@ -56,7 +55,7 @@ android {
}
nightly{
initWith release
versionNameSuffix '-nightly'
versionNameSuffix '-nightly+@' + System.getenv("CURRENT_DATE")
applicationIdSuffix '.nightly'
signingConfig signingConfigs.nightly
}