kiwix-android/build.gradle
2018-07-09 23:24:58 +01:00

43 lines
897 B
Groovy

buildscript {
repositories {
jcenter()
google()
}
dependencies {
classpath "com.android.tools.build:gradle:3.1.3"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
ext {
androidGradlePluginVersion = '3.1.3'
testdroidGradlePluginVersion = '2.49.1'
supportLibraryVersion = '27.1.1'
rxJavaVersion = '2.1.9'
rxAndroidVersion = '2.0.2'
okHttpVersion = '3.9.1'
retrofitVersion = '2.3.0'
javaxAnnotationVersion = '1.3.2'
daggerVersion = '2.16'
inkPageIndicatorVersion = '1.3.0'
constraintLayoutVersion = '1.1.2'
butterKnifeVersion = '8.8.1'
espressoVersion = '3.0.2'
apacheCommonsVersion = '2.6'
multidexVersion = '1.0.3'
jUnitVersion = '4.12'
}
allprojects {
repositories {
jcenter()
google()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}