Android: add ci with saving artifacts

This commit is contained in:
Maksim
2020-05-24 12:57:05 +02:00
committed by rubenwardy
parent 05436fb551
commit e831ebd63b
2 changed files with 46 additions and 1 deletions

View File

@@ -11,8 +11,11 @@ android {
versionCode project.versionCode
}
// load properties
Properties props = new Properties()
props.load(new FileInputStream(file('../local.properties')))
def propfile = file('../local.properties')
if (propfile.exists())
props.load(new FileInputStream(propfile))
if (props.getProperty('keystore') != null) {
signingConfigs {