2019-09-18 15:29:09 -05:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
|
|
|
|
buildscript {
|
|
|
|
ext {
|
|
|
|
kotlin_version = '1.3.50'
|
|
|
|
|
|
|
|
release = [
|
2019-11-17 16:17:37 -06:00
|
|
|
versionName: "3.9.8-dev",
|
|
|
|
versionCode: 3090800
|
2019-09-18 15:29:09 -05:00
|
|
|
]
|
|
|
|
|
|
|
|
setup = [
|
|
|
|
compileSdk: 28,
|
|
|
|
buildTools: "28.0.3",
|
|
|
|
minSdk : 16,
|
|
|
|
targetSdk : 28
|
|
|
|
]
|
|
|
|
|
|
|
|
versions = [
|
|
|
|
kotlin : "1.3.50",
|
2019-11-12 15:05:40 -06:00
|
|
|
ktx : "1.1.0",
|
2019-09-18 15:29:09 -05:00
|
|
|
|
|
|
|
androidX : '1.0.0',
|
|
|
|
annotation : '1.1.0',
|
2019-11-12 15:05:40 -06:00
|
|
|
recyclerView : '1.1.0-rc01',
|
|
|
|
material : '1.2.0-alpha01',
|
|
|
|
appcompat : '1.1.0',
|
|
|
|
constraintLayout : '2.0.0-beta3',
|
2019-09-18 15:29:09 -05:00
|
|
|
cardview : '1.0.0',
|
|
|
|
gridLayout : '1.0.0',
|
|
|
|
navigation : "2.0.0",
|
|
|
|
navigationFragment: "1.0.0",
|
|
|
|
legacy : "1.0.0",
|
|
|
|
|
2019-11-12 15:05:40 -06:00
|
|
|
room : "2.2.1",
|
|
|
|
lifecycle : "2.2.0-rc02",
|
2019-11-03 08:01:12 -06:00
|
|
|
work : "2.2.0",
|
2019-09-18 15:29:09 -05:00
|
|
|
|
|
|
|
firebase : '17.2.0',
|
|
|
|
firebasemessaging: "20.0.0",
|
|
|
|
play_services : "17.0.0",
|
|
|
|
|
|
|
|
materialdialogs : "0.9.6.0",
|
2019-11-12 16:35:13 -06:00
|
|
|
materialdrawer : "cad66092a6",
|
2019-09-18 15:29:09 -05:00
|
|
|
iconics : "4.0.1-b02",
|
|
|
|
font_cmd : "3.5.95.1-kotlin",
|
|
|
|
|
2019-11-12 16:35:13 -06:00
|
|
|
navlib : "8ae5e2b87a",
|
2019-09-18 15:29:09 -05:00
|
|
|
|
|
|
|
gifdrawable : "1.2.15"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
maven {
|
|
|
|
url 'https://maven.fabric.io/public'
|
|
|
|
}
|
|
|
|
google()
|
|
|
|
jcenter()
|
|
|
|
}
|
|
|
|
dependencies {
|
2019-10-14 05:46:36 -05:00
|
|
|
classpath 'com.android.tools.build:gradle:3.5.1'
|
2019-09-18 15:29:09 -05:00
|
|
|
classpath 'me.tatarka:gradle-retrolambda:3.7.0'
|
|
|
|
classpath 'com.google.gms:google-services:4.3.1'
|
|
|
|
classpath 'io.fabric.tools:gradle:1.28.1'
|
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
|
|
|
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
|
|
// in the individual module build.gradle files
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
gradle.projectsEvaluated {
|
|
|
|
tasks.withType(JavaCompile) {
|
|
|
|
options.compilerArgs << "-Xmaxerrs" << "1000"
|
|
|
|
options.compilerArgs << "-Xmaxwarns" << "1000"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
jcenter()
|
|
|
|
maven { url 'https://jitpack.io' }
|
|
|
|
maven { url "https://kotlin.bintray.com/kotlinx/" }
|
2019-11-01 15:31:26 -05:00
|
|
|
maven { url "https://dl.bintray.com/wulkanowy/wulkanowy" }
|
2019-09-18 15:29:09 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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-alpha07'
|
|
|
|
|
|
|
|
iconics = '4.0.1-b01'
|
|
|
|
kotlin = '1.3.41'
|
|
|
|
}
|
|
|
|
|
|
|
|
task clean(type: Delete) {
|
|
|
|
delete rootProject.buildDir
|
|
|
|
}
|