2014-08-04 16:29:16 +02:00
|
|
|
apply plugin: 'com.android.application'
|
2014-03-22 14:57:08 +01:00
|
|
|
|
2013-05-25 22:48:11 +02:00
|
|
|
dependencies {
|
2014-06-04 10:22:05 +02: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 10:21:28 +02:00
|
|
|
|
2015-01-13 19:05:26 +01:00
|
|
|
compile 'com.android.support:support-v4:21.0.3'
|
|
|
|
compile 'com.android.support:appcompat-v7:21.0.3'
|
2015-01-13 21:55:53 +01:00
|
|
|
compile 'com.android.support:recyclerview-v7:21.0.3'
|
2014-05-07 16:51:06 +02:00
|
|
|
compile project(':extern:openpgp-api-lib')
|
|
|
|
compile project(':extern:openkeychain-api-lib')
|
2014-04-16 21:49:29 +02:00
|
|
|
compile project(':extern:html-textview')
|
|
|
|
compile project(':extern:StickyListHeaders:library')
|
|
|
|
compile project(':extern:spongycastle:core')
|
|
|
|
compile project(':extern:spongycastle:pg')
|
|
|
|
compile project(':extern:spongycastle:pkix')
|
|
|
|
compile project(':extern:spongycastle:prov')
|
2014-06-10 01:23:24 +02:00
|
|
|
compile project(':extern:SuperToasts:supertoasts')
|
2014-06-23 22:02:18 +02:00
|
|
|
compile project(':extern:minidns')
|
2014-06-20 09:26:04 -07:00
|
|
|
compile project(':extern:KeybaseLib:Lib')
|
2014-07-06 02:10:35 +02:00
|
|
|
compile project(':extern:TokenAutoComplete:library')
|
2014-09-04 11:30:36 +02:00
|
|
|
compile project(':extern:safeslinger-exchange')
|
2014-12-29 23:10:50 +01:00
|
|
|
compile project(':extern:android-lockpattern:code')
|
2015-01-14 19:14:30 +01:00
|
|
|
|
|
|
|
// TODO: include as submodule?:
|
|
|
|
compile 'com.journeyapps:zxing-android-embedded:2.0.1@aar'
|
|
|
|
compile 'com.journeyapps:zxing-android-integration:2.0.1@aar'
|
|
|
|
compile 'com.google.zxing:core:3.0.1'
|
2015-01-15 14:48:13 +01:00
|
|
|
compile 'com.jpardogo.materialtabstrip:library:1.0.8'
|
2013-05-25 22:48:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
2014-12-04 22:48:40 +01:00
|
|
|
compileSdkVersion 21
|
|
|
|
buildToolsVersion '21.1.1'
|
2013-05-25 22:48:11 +02:00
|
|
|
|
|
|
|
defaultConfig {
|
2015-01-14 18:59:18 +01:00
|
|
|
minSdkVersion 15
|
2014-12-04 22:48:40 +01:00
|
|
|
targetSdkVersion 21
|
2013-05-25 22:48:11 +02:00
|
|
|
}
|
|
|
|
|
2015-01-25 12:41:03 +01:00
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility JavaVersion.VERSION_1_7
|
|
|
|
targetCompatibility JavaVersion.VERSION_1_7
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2014-05-02 17:42:40 +02: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 22:33:11 +01:00
|
|
|
lintOptions {
|
2014-05-02 17:42:40 +02:00
|
|
|
// Do not abort build if lint finds errors
|
2014-01-16 22:33:11 +01:00
|
|
|
abortOnError false
|
2014-05-02 17:42:40 +02:00
|
|
|
|
2014-04-18 20:41:39 +02:00
|
|
|
checkAllWarnings true
|
2014-03-10 14:59:15 -04:00
|
|
|
htmlReport true
|
2014-09-04 11:30:36 +02:00
|
|
|
htmlOutput file('lint-report.html')
|
2014-01-16 22:33:11 +01:00
|
|
|
}
|
2014-06-23 13:44:25 +02:00
|
|
|
|
|
|
|
// Disable preDexing, causes com.android.dx.cf.iface.ParseException: bad class file magic (cafebabe) or version (0034.0000) on some systems
|
|
|
|
dexOptions {
|
|
|
|
preDexLibraries = false
|
|
|
|
}
|
2013-05-25 22:48:11 +02:00
|
|
|
}
|
2014-03-22 14:57:08 +01:00
|
|
|
|
2014-05-02 17:42:40 +02:00
|
|
|
// NOTE: This disables Lint!
|
|
|
|
tasks.whenTaskAdded { task ->
|
2014-09-04 11:30:36 +02:00
|
|
|
if (task.name.contains('lint')) {
|
2014-05-02 17:42:40 +02:00
|
|
|
task.enabled = false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|