mirror of
https://github.com/kiwix/kiwix-android.git
synced 2025-08-03 10:46:53 -04:00
47 lines
1016 B
Groovy
47 lines
1016 B
Groovy
buildscript {
|
|
repositories {
|
|
google()
|
|
jcenter()
|
|
}
|
|
dependencies {
|
|
classpath "com.android.tools.build:gradle:3.1.4"
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
// in the individual module build.gradle files
|
|
}
|
|
}
|
|
|
|
ext {
|
|
androidGradlePluginVersion = '3.1.4'
|
|
testdroidGradlePluginVersion = '2.63.0'
|
|
supportLibraryVersion = '27.1.1'
|
|
rxJavaVersion = '2.2.2'
|
|
rxAndroidVersion = '2.1.0'
|
|
okHttpVersion = '3.11.0'
|
|
retrofitVersion = '2.4.0'
|
|
javaxAnnotationVersion = '1.3.2'
|
|
daggerVersion = '2.16'
|
|
inkPageIndicatorVersion = '1.3.0'
|
|
constraintLayoutVersion = '1.1.3'
|
|
butterKnifeVersion = '8.8.1'
|
|
espressoVersion = '3.0.2'
|
|
apacheCommonsVersion = '2.6'
|
|
multidexVersion = '1.0.3'
|
|
jUnitVersion = '4.12'
|
|
mockitoVersion = '2.19.1'
|
|
powerMockVersion = '1.6.6'
|
|
powerMockJUnitVersion = '1.7.4'
|
|
baristaVersion = '2.5.0'
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
google()
|
|
jcenter()
|
|
}
|
|
}
|
|
|
|
task clean(type: Delete) {
|
|
delete rootProject.buildDir
|
|
}
|