2013-05-25 16:48:11 -04:00
|
|
|
apply plugin: 'android'
|
2014-06-15 11:08:41 -04:00
|
|
|
apply plugin: 'robolectric'
|
2014-03-22 09:57:08 -04:00
|
|
|
|
2013-05-25 16:48:11 -04:00
|
|
|
dependencies {
|
2014-06-04 04:22:05 -04:00
|
|
|
// NOTE: Always use fixed version codes not dynamic ones, e.g. 0.7.3 instead of 0.7.+, see README for more information
|
2014-06-04 04:21:28 -04:00
|
|
|
|
2014-04-18 14:54:13 -04:00
|
|
|
compile 'com.android.support:support-v4:19.1.0'
|
|
|
|
compile 'com.android.support:appcompat-v7:19.1.0'
|
2014-05-07 10:51:06 -04:00
|
|
|
compile project(':extern:openpgp-api-lib')
|
|
|
|
compile project(':extern:openkeychain-api-lib')
|
2014-04-16 15:49:29 -04:00
|
|
|
compile project(':extern:html-textview')
|
|
|
|
compile project(':extern:StickyListHeaders:library')
|
|
|
|
compile project(':extern:AndroidBootstrap:AndroidBootstrap')
|
|
|
|
compile project(':extern:zxing-qr-code')
|
|
|
|
compile project(':extern:zxing-android-integration')
|
|
|
|
compile project(':extern:spongycastle:core')
|
|
|
|
compile project(':extern:spongycastle:pg')
|
|
|
|
compile project(':extern:spongycastle:pkix')
|
|
|
|
compile project(':extern:spongycastle:prov')
|
|
|
|
compile project(':extern:AppMsg:library')
|
2014-06-09 19:23:24 -04:00
|
|
|
compile project(':extern:SuperToasts:supertoasts')
|
2014-06-05 17:46:14 -04:00
|
|
|
compile project(':extern:dnsjava')
|
2014-03-22 09:57:08 -04:00
|
|
|
|
2014-06-15 11:08:41 -04:00
|
|
|
|
|
|
|
// Unit tests are run with Robolectric
|
|
|
|
testCompile 'junit:junit:4.11'
|
|
|
|
testCompile 'org.robolectric:robolectric:2.3'
|
|
|
|
testCompile 'com.squareup:fest-android:1.0.8'
|
|
|
|
testCompile 'com.google.android:android:4.1.1.4'
|
|
|
|
testCompile 'com.android.support:support-v4:19.1.0'
|
|
|
|
testCompile 'com.android.support:appcompat-v7:19.1.0'
|
|
|
|
testCompile project(':extern:openpgp-api-lib')
|
|
|
|
testCompile project(':extern:openkeychain-api-lib')
|
|
|
|
testCompile project(':extern:html-textview')
|
|
|
|
testCompile project(':extern:StickyListHeaders:library')
|
|
|
|
testCompile project(':extern:AndroidBootstrap:AndroidBootstrap')
|
|
|
|
testCompile project(':extern:zxing-qr-code')
|
|
|
|
testCompile project(':extern:zxing-android-integration')
|
|
|
|
testCompile project(':extern:spongycastle:core')
|
|
|
|
testCompile project(':extern:spongycastle:pg')
|
|
|
|
testCompile project(':extern:spongycastle:pkix')
|
|
|
|
testCompile project(':extern:spongycastle:prov')
|
|
|
|
testCompile project(':extern:AppMsg:library')
|
|
|
|
testCompile project(':extern:SuperToasts:supertoasts')
|
2014-06-09 19:23:24 -04:00
|
|
|
|
2013-05-25 16:48:11 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
2013-12-30 17:25:38 -05:00
|
|
|
compileSdkVersion 19
|
2014-06-09 15:52:17 -04:00
|
|
|
buildToolsVersion "19.1"
|
2013-05-25 16:48:11 -04:00
|
|
|
|
|
|
|
defaultConfig {
|
2014-06-15 11:08:41 -04:00
|
|
|
minSdkVersion 15
|
2013-12-30 17:25:38 -05:00
|
|
|
targetSdkVersion 19
|
2013-05-25 16:48:11 -04:00
|
|
|
}
|
|
|
|
|
2013-09-09 15:11:16 -04: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 08:37:54 -04:00
|
|
|
release {
|
2013-09-09 15:11:16 -04:00
|
|
|
storeFile file(signingStoreLocation)
|
|
|
|
storePassword signingStorePassword
|
|
|
|
keyAlias signingKeyAlias
|
|
|
|
keyPassword signingKeyPassword
|
2013-08-15 08:37:54 -04:00
|
|
|
}
|
2013-05-25 16:48:11 -04:00
|
|
|
}
|
2013-09-09 15:11:16 -04:00
|
|
|
|
|
|
|
buildTypes.release.signingConfig = signingConfigs.release
|
|
|
|
} else {
|
|
|
|
buildTypes.release.signingConfig = null
|
2013-05-25 16:48:11 -04:00
|
|
|
}
|
2014-01-16 16:33:11 -05:00
|
|
|
|
2014-05-02 11:42:40 -04:00
|
|
|
// NOTE: Lint is disabled because it slows down builds,
|
|
|
|
// to enable it comment out the code at the bottom of this build.gradle
|
2014-01-16 16:33:11 -05:00
|
|
|
lintOptions {
|
2014-05-02 11:42:40 -04:00
|
|
|
// Do not abort build if lint finds errors
|
2014-01-16 16:33:11 -05:00
|
|
|
abortOnError false
|
2014-05-02 11:42:40 -04:00
|
|
|
|
2014-04-18 14:41:39 -04:00
|
|
|
checkAllWarnings true
|
2014-03-10 14:59:15 -04:00
|
|
|
htmlReport true
|
|
|
|
htmlOutput file("lint-report.html")
|
2014-01-16 16:33:11 -05:00
|
|
|
}
|
2013-05-25 16:48:11 -04:00
|
|
|
}
|
2014-03-22 09:57:08 -04:00
|
|
|
|
2014-05-02 11:42:40 -04:00
|
|
|
// NOTE: This disables Lint!
|
|
|
|
tasks.whenTaskAdded { task ->
|
|
|
|
if (task.name.equals("lint")) {
|
|
|
|
task.enabled = false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|