aboutsummaryrefslogtreecommitdiffstats
path: root/OpenKeychain/build.gradle
diff options
context:
space:
mode:
authorDominik Schürmann <dominik@dominikschuermann.de>2014-06-23 13:44:25 +0200
committerDominik Schürmann <dominik@dominikschuermann.de>2014-06-23 13:44:25 +0200
commite8b96d1035aebf9ac7cb642868705736735849b1 (patch)
tree392cb1729dcbd287f3e342205b460913559464ad /OpenKeychain/build.gradle
parent514a4c668b0e9afcfcb45832bba05799be621b95 (diff)
downloadopen-keychain-e8b96d1035aebf9ac7cb642868705736735849b1.tar.gz
open-keychain-e8b96d1035aebf9ac7cb642868705736735849b1.tar.bz2
open-keychain-e8b96d1035aebf9ac7cb642868705736735849b1.zip
Disable pre-dexing, causes exceptions on some systems
Diffstat (limited to 'OpenKeychain/build.gradle')
-rw-r--r--OpenKeychain/build.gradle6
1 files changed, 5 insertions, 1 deletions
diff --git a/OpenKeychain/build.gradle b/OpenKeychain/build.gradle
index ff6f603f4..c18c4865c 100644
--- a/OpenKeychain/build.gradle
+++ b/OpenKeychain/build.gradle
@@ -29,7 +29,6 @@ dependencies {
testCompile 'com.squareup:fest-android:1.0.8'
testCompile 'com.google.android:android:4.1.1.4'
// compile dependencies are automatically also included in testCompile
-
}
android {
@@ -79,6 +78,11 @@ android {
htmlReport true
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 {
+ preDexLibraries = false
+ }
}
// NOTE: This disables Lint!