AntennaPod/build.gradle

96 lines
2.5 KiB
Groovy
Raw Normal View History

2013-08-07 11:35:51 +02:00
buildscript {
repositories {
google()
jcenter()
2016-05-10 20:17:56 +02:00
mavenCentral()
2020-03-30 00:39:52 +02:00
maven { url "https://plugins.gradle.org/m2/" }
2013-08-07 11:35:51 +02:00
}
dependencies {
2019-08-20 22:17:56 +02:00
classpath 'com.android.tools.build:gradle:3.5.0'
2019-01-27 12:45:32 +01:00
classpath 'com.getkeepsafe.dexcount:dexcount-gradle-plugin:0.8.5'
2020-03-30 00:39:52 +02:00
classpath 'de.timfreiheit.resourceplaceholders:placeholders:0.3'
}
2013-08-07 11:35:51 +02:00
}
allprojects {
repositories {
google()
jcenter()
2019-01-27 12:45:32 +01:00
maven { url "https://jitpack.io" }
2014-07-06 12:37:43 +02:00
}
2019-01-27 12:54:56 +01:00
gradle.projectsEvaluated {
tasks.withType(JavaCompile) {
options.compilerArgs << "-Xlint"
2019-01-27 12:54:56 +01:00
}
}
2014-10-14 18:41:13 +02:00
}
2015-11-01 17:48:33 +01:00
// Disable predex if requested (we can"t predex in Circle CI
// See http://tools.android.com/tech-docs/new-build-system/tips#TOC-Improving-Build-Server-performance
// and https://circleci.com/docs/android
2015-11-01 17:48:33 +01:00
project.ext.preDexLibs = !project.hasProperty("disablePreDex")
subprojects {
project.plugins.whenPluginAdded { plugin ->
2018-01-14 17:55:51 +01:00
if ("com.android.build.gradle.AppPlugin" == plugin.class.name) {
project.android.dexOptions.preDexLibraries = rootProject.ext.preDexLibs
2018-01-14 17:55:51 +01:00
} else if ("com.android.build.gradle.LibraryPlugin" == plugin.class.name) {
project.android.dexOptions.preDexLibraries = rootProject.ext.preDexLibs
}
}
}
2015-11-01 17:48:33 +01:00
project.ext {
2019-07-22 18:46:55 +02:00
compileSdkVersion = 28
2019-11-22 18:50:32 +01:00
minSdkVersion = 16
2019-07-22 18:46:55 +02:00
targetSdkVersion = 28
2015-11-01 17:48:33 +01:00
workManagerVersion = "2.3.4"
espressoVersion = "3.2.0"
awaitilityVersion = "3.1.6"
2017-09-23 10:04:00 +02:00
commonsioVersion = "2.5"
commonslangVersion = "3.6"
eventbusVersion = "3.1.1"
2018-10-14 10:26:36 +02:00
glideVersion = "4.8.0"
2018-12-23 15:45:30 +01:00
glideOkhttpIntegrationVersion = "4.8.0"
2016-08-04 21:19:03 +02:00
iconifyVersion = "2.2.2"
jsoupVersion = "1.11.2"
okhttpVersion = "3.12.5"
okioVersion = "1.17.4"
2018-04-03 12:06:35 +02:00
recyclerviewFlexibledividerVersion = "1.4.0"
2017-09-23 09:56:37 +02:00
robotiumSoloVersion = "5.6.3"
2018-09-30 19:58:53 +02:00
rxAndroidVersion = "2.1.0"
rxJavaVersion = "2.2.2"
2018-04-03 12:06:35 +02:00
rxJavaRulesVersion = "1.3.3.0"
triangleLabelViewVersion = "1.1.2"
2019-10-19 22:30:39 +02:00
exoPlayerVersion = "2.10.8"
2017-08-13 18:09:44 +02:00
audioPlayerVersion = "v1.0.17"
2016-03-19 05:31:41 +01:00
2017-09-23 10:03:36 +02:00
castCompanionLibVer = "2.9.1"
playServicesVersion = "8.4.0"
wearableSupportVersion = "2.4.0"
2015-11-01 17:48:33 +01:00
}
wrapper {
gradleVersion = "4.10.2"
2015-11-01 17:48:33 +01:00
}
2016-06-08 20:11:26 +02:00
// free build hack: common functions
def doFreeBuild() {
return hasProperty("freeBuild")
2016-06-08 20:11:26 +02:00
}
2019-09-24 11:12:35 +02:00
apply plugin: "checkstyle"
checkstyle {
toolVersion '8.24'
}
task checkstyle(type: Checkstyle) {
classpath = files()
source "${project.rootDir}"
exclude("**/gen/**")
exclude("**/generated/**")
2019-09-24 11:12:35 +02:00
}