thunderbird-android/build.gradle

24 lines
669 B
Groovy
Raw Normal View History

2013-05-25 21:14:46 +00:00
buildscript {
2014-09-18 13:18:41 +00:00
repositories {
jcenter()
2014-09-18 13:18:41 +00:00
}
2013-05-25 21:14:46 +00:00
2014-09-18 13:18:41 +00:00
dependencies {
classpath 'com.android.tools.build:gradle:2.2.0'
2014-09-18 13:18:41 +00:00
}
2013-05-25 21:14:46 +00:00
}
2015-12-21 01:11:37 +00:00
project.ext {
testCoverage = project.hasProperty('testCoverage')
optimizeForDevelopment = project.hasProperty('optimizeForDevelopment') && optimizeForDevelopment == 'true'
2015-12-21 01:11:37 +00:00
}
2014-08-30 23:10:13 +00:00
subprojects {
2014-09-18 13:18:41 +00:00
project.plugins.whenPluginAdded { plugin ->
if ("com.android.build.gradle.AppPlugin".equals(plugin.class.name) ||
"com.android.build.gradle.LibraryPlugin".equals(plugin.class.name)) {
2016-10-19 10:35:28 +00:00
project.android.dexOptions.preDexLibraries = !rootProject.hasProperty('disablePreDex')
2014-09-18 13:18:41 +00:00
}
2014-08-30 23:10:13 +00:00
}
}