mirror of
https://github.com/moparisthebest/open-keychain
synced 2024-11-23 17:22:16 -05:00
63 lines
1.5 KiB
Groovy
63 lines
1.5 KiB
Groovy
|
buildscript {
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
classpath 'com.android.tools.build:gradle:0.7.3'
|
||
|
}
|
||
|
}
|
||
|
|
||
|
apply plugin: 'android'
|
||
|
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
compile 'com.android.support:support-v4:19.0.+'
|
||
|
}
|
||
|
|
||
|
android {
|
||
|
compileSdkVersion 19
|
||
|
buildToolsVersion "19"
|
||
|
|
||
|
defaultConfig {
|
||
|
minSdkVersion 8
|
||
|
targetSdkVersion 19
|
||
|
}
|
||
|
|
||
|
/*
|
||
|
* To sign release build, create file gradle.properties in ~/.gradle/ with this content:
|
||
|
*
|
||
|
* signingStoreLocation=/home/key.store
|
||
|
* signingStorePassword=xxx
|
||
|
* signingKeyAlias=alias
|
||
|
* signingKeyPassword=xxx
|
||
|
*/
|
||
|
if (project.hasProperty('signingStoreLocation') &&
|
||
|
project.hasProperty('signingStorePassword') &&
|
||
|
project.hasProperty('signingKeyAlias') &&
|
||
|
project.hasProperty('signingKeyPassword')) {
|
||
|
println "Found sign properties in gradle.properties! Signing build…"
|
||
|
|
||
|
signingConfigs {
|
||
|
release {
|
||
|
storeFile file(signingStoreLocation)
|
||
|
storePassword signingStorePassword
|
||
|
keyAlias signingKeyAlias
|
||
|
keyPassword signingKeyPassword
|
||
|
}
|
||
|
}
|
||
|
|
||
|
buildTypes.release.signingConfig = signingConfigs.release
|
||
|
} else {
|
||
|
buildTypes.release.signingConfig = null
|
||
|
}
|
||
|
|
||
|
// Do not abort build if lint finds errors
|
||
|
lintOptions {
|
||
|
abortOnError false
|
||
|
}
|
||
|
}
|