Fix tests, again

Who even messed them up, anyway? *looks away*

Signed-off-by: androidacy-user <opensource@androidacy.com>
pull/27/head
androidacy-user 3 years ago
parent f3d31ed380
commit 46a4bd2934

@ -13,11 +13,13 @@ android {
release { release {
// Everything comes from local.properties // Everything comes from local.properties
Properties properties = new Properties() Properties properties = new Properties()
properties.load(project.rootProject.file('local.properties').newDataInputStream()) if (project.rootProject.file('local.properties').exists()) {
storeFile file(properties.getProperty('keystore.file')) properties.load(project.rootProject.file('local.properties').newDataInputStream())
storePassword properties.getProperty('keystore.password') storeFile file(properties.getProperty('keystore.file'))
keyAlias 'key0' storePassword properties.getProperty('keystore.password')
keyPassword properties.getProperty('keystore.password') keyAlias 'key0'
keyPassword properties.getProperty('keystore.password')
}
} }
} }

Loading…
Cancel
Save