mirror of
https://github.com/SimpleMobileTools/Simple-Clock.git
synced 2025-03-05 20:18:16 +01:00
adding release version signing
This commit is contained in:
parent
f5360171ca
commit
46af53e299
@ -15,13 +15,18 @@ android {
|
|||||||
setProperty("archivesBaseName", "clock")
|
setProperty("archivesBaseName", "clock")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
signingConfigs {
|
||||||
|
release
|
||||||
|
}
|
||||||
|
|
||||||
buildTypes {
|
buildTypes {
|
||||||
debug {
|
debug {
|
||||||
applicationIdSuffix ".debug"
|
applicationIdSuffix ".debug"
|
||||||
}
|
}
|
||||||
release {
|
release {
|
||||||
minifyEnabled false
|
minifyEnabled true
|
||||||
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
||||||
|
signingConfig signingConfigs.release
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -38,3 +43,22 @@ android {
|
|||||||
dependencies {
|
dependencies {
|
||||||
implementation 'com.simplemobiletools:commons:3.13.16'
|
implementation 'com.simplemobiletools:commons:3.13.16'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Properties props = new Properties()
|
||||||
|
def propFile = new File('signing.properties')
|
||||||
|
if (propFile.canRead()) {
|
||||||
|
props.load(new FileInputStream(propFile))
|
||||||
|
|
||||||
|
if (props != null && props.containsKey('STORE_FILE') && props.containsKey('KEY_ALIAS') && props.containsKey('PASSWORD')) {
|
||||||
|
android.signingConfigs.release.storeFile = file(props['STORE_FILE'])
|
||||||
|
android.signingConfigs.release.storePassword = props['PASSWORD']
|
||||||
|
android.signingConfigs.release.keyAlias = props['KEY_ALIAS']
|
||||||
|
android.signingConfigs.release.keyPassword = props['PASSWORD']
|
||||||
|
} else {
|
||||||
|
println 'signing.properties found but some entries are missing'
|
||||||
|
android.buildTypes.release.signingConfig = null
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
println 'signing.properties not found'
|
||||||
|
android.buildTypes.release.signingConfig = null
|
||||||
|
}
|
||||||
|
3
signing.properties_sample
Normal file
3
signing.properties_sample
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
STORE_FILE=/path/to/your.keystore
|
||||||
|
KEY_ALIAS=projectkeyalias
|
||||||
|
PASSWORD=yourpass
|
Loading…
x
Reference in New Issue
Block a user