mirror of
https://github.com/oxen-io/session-android.git
synced 2025-08-25 17:58:09 +00:00
feat: add signing props to release config build
This commit is contained in:
@@ -232,8 +232,21 @@ android {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
signingConfigs {
|
||||||
|
release {
|
||||||
|
def props = new Properties()
|
||||||
|
rootProject.file("signing.properties").withInputStream { props.load(it) }
|
||||||
|
storeFile file(props["KEYSTORE_FILE"])
|
||||||
|
storePassword props["KEYSTORE_PASS"]
|
||||||
|
keyAlias props["KEYSTORE_ALIAS"]
|
||||||
|
keyPassword props["KEYSTORE_ALIAS_PASS"]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
buildTypes {
|
buildTypes {
|
||||||
release {
|
release {
|
||||||
|
signingConfig signingConfigs.release
|
||||||
|
debuggable true
|
||||||
minifyEnabled false
|
minifyEnabled false
|
||||||
}
|
}
|
||||||
debug {
|
debug {
|
||||||
|
Reference in New Issue
Block a user