mirror of
https://github.com/kuba2k2/NavLib.git
synced 2024-11-09 19:50:26 -06:00
47 lines
1.2 KiB
Groovy
47 lines
1.2 KiB
Groovy
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
buildscript {
|
|
ext.kotlin_version = '1.3.41'
|
|
ext.material_version = '1.1.0-alpha09'
|
|
repositories {
|
|
google()
|
|
jcenter()
|
|
}
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:3.5.0-rc03'
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
|
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
// in the individual module build.gradle files
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
google()
|
|
jcenter()
|
|
maven { url 'https://jitpack.io' }
|
|
}
|
|
}
|
|
|
|
|
|
ext {
|
|
compileSdkVersion = 28
|
|
buildToolsVersion = '28.0.3'
|
|
targetSdkVersion = compileSdkVersion
|
|
minSdkVersion = 16
|
|
|
|
androidXAppCompat = '1.1.0-beta01'
|
|
androidXRecyclerView = '1.1.0-alpha06'
|
|
androidXCardView = '1.0.0'
|
|
androidXGridLayout = '1.0.0'
|
|
androidXConstraintLayout = '1.1.3'
|
|
googleMaterial = '1.1.0-alpha09'
|
|
|
|
iconics = '4.0.1-b01'
|
|
}
|
|
|
|
task clean(type: Delete) {
|
|
delete rootProject.buildDir
|
|
}
|