mirror of
https://github.com/kiwix/kiwix-android.git
synced 2025-08-03 10:46:53 -04:00
39 lines
871 B
Groovy
39 lines
871 B
Groovy
buildscript {
|
|
ext.kotlin_version = '1.3.31'
|
|
ext.objectboxVersion = '2.3.4'
|
|
repositories {
|
|
jcenter()
|
|
google()
|
|
}
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:3.4.1'
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
|
classpath "io.objectbox:objectbox-gradle-plugin:$objectboxVersion"
|
|
classpath 'com.dicedmelon.gradle:jacoco-android:0.1.4'
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
// in the individual module build.gradle files
|
|
}
|
|
}
|
|
|
|
ext {
|
|
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.15'
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
jcenter()
|
|
google()
|
|
}
|
|
}
|
|
|
|
task clean(type: Delete) {
|
|
delete rootProject.buildDir
|
|
}
|