1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2024-07-07 22:22:00 +02:00

Try to disable pre dexing for travis

This commit is contained in:
Andreas Shimokawa 2017-11-14 09:18:06 +01:00
parent 5a77f224f4
commit 383d1d9431

View File

@ -36,6 +36,9 @@ android {
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
dexOptions {
preDexLibraries = System.getenv('TRAVIS_BUILD_NUMBER') ? true : false
}
lintOptions {
abortOnError ABORT_ON_CHECK_FAILURE