aboutsummaryrefslogtreecommitdiffstats
path: root/OpenKeychain/build.gradle
diff options
context:
space:
mode:
authorDominik Schürmann <dominik@dominikschuermann.de>2015-08-10 14:35:15 +0200
committerDominik Schürmann <dominik@dominikschuermann.de>2015-08-17 09:31:34 +0200
commitdbaf7070ead596f5c70ad48fc55aada2f77a856a (patch)
treec3c5c32478d1aaba490f4ff206d051fdb24f728a /OpenKeychain/build.gradle
parent7004d129a8546977c450bd40931b0b774cd2025e (diff)
downloadopen-keychain-dbaf7070ead596f5c70ad48fc55aada2f77a856a.tar.gz
open-keychain-dbaf7070ead596f5c70ad48fc55aada2f77a856a.tar.bz2
open-keychain-dbaf7070ead596f5c70ad48fc55aada2f77a856a.zip
WIP mime parsing
Diffstat (limited to 'OpenKeychain/build.gradle')
-rw-r--r--OpenKeychain/build.gradle10
1 files changed, 9 insertions, 1 deletions
diff --git a/OpenKeychain/build.gradle b/OpenKeychain/build.gradle
index 7d2f40128..5bf8f6d1b 100644
--- a/OpenKeychain/build.gradle
+++ b/OpenKeychain/build.gradle
@@ -56,6 +56,8 @@ dependencies {
compile 'com.mikepenz.iconics:community-material-typeface:1.0.0@aar'
compile 'com.nispok:snackbar:2.11.0'
compile 'com.squareup.okhttp:okhttp:2.4.0'
+ compile 'org.apache.james:apache-mime4j-core:0.7.2'
+ compile 'org.apache.james:apache-mime4j-dom:0.7.2'
// libs as submodules
compile project(':extern:openpgp-api-lib:openpgp-api')
@@ -199,15 +201,21 @@ android {
htmlOutput file('lint-report.html')
}
- // Disable preDexing, causes com.android.dx.cf.iface.ParseException: bad class file magic (cafebabe) or version (0034.0000) on some systems
dexOptions {
+ // Disable preDexing, causes com.android.dx.cf.iface.ParseException: bad class file magic (cafebabe) or version (0034.0000) on some systems
preDexLibraries = false
+ // faster with incremental?
+// incremental true
+ javaMaxHeapSize "4g"
}
packagingOptions {
exclude 'LICENSE.txt'
exclude 'META-INF/LICENSE.txt'
exclude 'META-INF/NOTICE.txt'
+ exclude 'META-INF/DEPENDENCIES'
+ exclude 'META-INF/LICENSE'
+ exclude 'META-INF/NOTICE'
exclude '.readme'
}
}