Fix signing

This commit is contained in:
Jannis Mattheis
2021-08-21 21:23:15 +02:00
parent 530bc03059
commit 802e30fd36
2 changed files with 25 additions and 11 deletions

View File

@@ -33,6 +33,20 @@ android {
}
}
if (project.hasProperty('sign')) {
android {
signingConfigs {
release {
storeFile file(System.getenv("RELEASE_STORE_FILE"))
storePassword System.getenv("RELEASE_STORE_PASSWORD")
keyAlias System.getenv("RELEASE_KEY_ALIAS")
keyPassword System.getenv("RELEASE_KEY_PASSWORD")
}
}
}
android.buildTypes.release.signingConfig android.signingConfigs.release
}
dependencies {
implementation project(':client')
implementation fileTree(dir: 'libs', include: ['*.jar'])