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:
parent
05436fb551
commit
e831ebd63b
2 changed files with 46 additions and 1 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue