2013-05-25 22:48:11 +02:00
|
|
|
apply plugin: 'android'
|
|
|
|
|
|
|
|
dependencies {
|
2014-01-29 01:49:59 +01:00
|
|
|
compile 'com.android.support:support-v4:19.0.1'
|
2014-02-02 14:13:09 +01:00
|
|
|
compile 'com.android.support:appcompat-v7:19.0.1'
|
2014-03-07 23:05:03 +01:00
|
|
|
compile project(':OpenPGP-Keychain-API:libraries:openpgp-api-library')
|
|
|
|
compile project(':OpenPGP-Keychain-API:libraries:openkeychain-api-library')
|
2013-09-09 21:11:16 +02:00
|
|
|
compile project(':libraries:HtmlTextView')
|
2014-01-02 21:10:08 +01:00
|
|
|
compile project(':libraries:StickyListHeaders:library')
|
2014-01-09 12:31:45 +01:00
|
|
|
compile project(':libraries:AndroidBootstrap')
|
2014-01-14 21:19:43 +01:00
|
|
|
compile project(':libraries:zxing')
|
|
|
|
compile project(':libraries:zxing-android-integration')
|
2014-01-27 14:01:37 +01:00
|
|
|
compile project(':libraries:spongycastle:core')
|
|
|
|
compile project(':libraries:spongycastle:pg')
|
|
|
|
compile project(':libraries:spongycastle:pkix')
|
|
|
|
compile project(':libraries:spongycastle:prov')
|
2014-02-20 22:50:37 +01:00
|
|
|
compile project(':libraries:Android-AppMsg:library')
|
2013-05-25 22:48:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
2013-12-30 23:25:38 +01:00
|
|
|
compileSdkVersion 19
|
2014-03-05 14:14:22 +01:00
|
|
|
buildToolsVersion "19.0.3"
|
2013-05-25 22:48:11 +02:00
|
|
|
|
|
|
|
defaultConfig {
|
2014-02-14 02:33:21 +01:00
|
|
|
minSdkVersion 9
|
2013-12-30 23:25:38 +01:00
|
|
|
targetSdkVersion 19
|
2013-05-25 22:48:11 +02:00
|
|
|
}
|
|
|
|
|
2013-09-09 21:11:16 +02:00
|
|
|
/*
|
|
|
|
* 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 {
|
2013-08-15 18:07:54 +05:30
|
|
|
release {
|
2013-09-09 21:11:16 +02:00
|
|
|
storeFile file(signingStoreLocation)
|
|
|
|
storePassword signingStorePassword
|
|
|
|
keyAlias signingKeyAlias
|
|
|
|
keyPassword signingKeyPassword
|
2013-08-15 18:07:54 +05:30
|
|
|
}
|
2013-05-25 22:48:11 +02:00
|
|
|
}
|
2013-09-09 21:11:16 +02:00
|
|
|
|
|
|
|
buildTypes.release.signingConfig = signingConfigs.release
|
|
|
|
} else {
|
|
|
|
buildTypes.release.signingConfig = null
|
2013-05-25 22:48:11 +02:00
|
|
|
}
|
2014-01-16 22:33:11 +01:00
|
|
|
|
|
|
|
// Do not abort build if lint finds errors
|
|
|
|
lintOptions {
|
|
|
|
abortOnError false
|
2014-03-10 14:59:15 -04:00
|
|
|
htmlReport true
|
|
|
|
htmlOutput file("lint-report.html")
|
2014-01-16 22:33:11 +01:00
|
|
|
}
|
2013-05-25 22:48:11 +02:00
|
|
|
}
|