1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-08-16 18:01:40 +00:00

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 {