Fix signing
This commit is contained in:
@@ -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'])
|
||||
|
||||
Reference in New Issue
Block a user