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 {
|
2020-01-19 12:07:27 -06:00
|
|
|
kotlin_version = '1.3.61'
|
2019-09-18 15:29:09 -05:00
|
|
|
|
|
|
|
release = [
|
2020-09-03 07:08:54 -05:00
|
|
|
versionName: "4.4",
|
|
|
|
versionCode: 4040099
|
2019-09-18 15:29:09 -05:00
|
|
|
]
|
|
|
|
|
|
|
|
setup = [
|
|
|
|
compileSdk: 28,
|
|
|
|
buildTools: "28.0.3",
|
|
|
|
minSdk : 16,
|
|
|
|
targetSdk : 28
|
|
|
|
]
|
|
|
|
|
|
|
|
versions = [
|
2020-08-24 10:42:53 -05:00
|
|
|
gradleAndroid : '4.1.0-rc01',
|
2020-03-24 10:29:45 -05:00
|
|
|
|
2020-02-22 07:48:49 -06:00
|
|
|
kotlin : ext.kotlin_version,
|
|
|
|
ktx : "1.2.0",
|
2019-09-18 15:29:09 -05:00
|
|
|
|
|
|
|
androidX : '1.0.0',
|
|
|
|
annotation : '1.1.0',
|
2020-01-19 12:07:27 -06:00
|
|
|
recyclerView : '1.2.0-alpha01',
|
2020-02-22 07:48:49 -06:00
|
|
|
material : '1.2.0-alpha05',
|
|
|
|
appcompat : '1.2.0-alpha02',
|
2020-01-19 12:07:27 -06:00
|
|
|
constraintLayout : '2.0.0-beta4',
|
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",
|
|
|
|
|
2020-03-24 10:29:45 -05:00
|
|
|
room : "2.2.5",
|
2020-02-22 07:48:49 -06:00
|
|
|
lifecycle : "2.2.0",
|
2020-03-24 10:29:45 -05:00
|
|
|
work : "2.3.4",
|
2019-09-18 15:29:09 -05:00
|
|
|
|
2020-01-19 12:07:27 -06:00
|
|
|
firebase : '17.2.2',
|
2020-03-24 10:29:45 -05:00
|
|
|
firebasemessaging: "20.1.3",
|
2019-09-18 15:29:09 -05:00
|
|
|
play_services : "17.0.0",
|
|
|
|
|
|
|
|
materialdialogs : "0.9.6.0",
|
2020-03-24 10:29:45 -05:00
|
|
|
materialdrawer : "817e45765c367034b03046aaea6e95eeabcb40e9",
|
2019-12-02 15:10:36 -06:00
|
|
|
iconics : "4.0.1",
|
2019-09-18 15:29:09 -05:00
|
|
|
font_cmd : "3.5.95.1-kotlin",
|
|
|
|
|
2020-03-26 12:48:54 -05:00
|
|
|
navlib : "28cdab341470dffa5f331379fe9702482681d7de",
|
2019-09-18 15:29:09 -05:00
|
|
|
|
2019-12-09 09:35:37 -06:00
|
|
|
gifdrawable : "1.2.15",
|
|
|
|
|
2020-03-24 10:29:45 -05:00
|
|
|
retrofit : "2.6.4"
|
2019-09-18 15:29:09 -05:00
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
maven {
|
|
|
|
url 'https://maven.fabric.io/public'
|
|
|
|
}
|
|
|
|
google()
|
|
|
|
jcenter()
|
|
|
|
}
|
|
|
|
dependencies {
|
2020-03-24 10:29:45 -05:00
|
|
|
classpath "com.android.tools.build:gradle:${versions.gradleAndroid}"
|
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${versions.kotlin}"
|
2019-09-18 15:29:09 -05:00
|
|
|
classpath 'me.tatarka:gradle-retrolambda:3.7.0'
|
2020-01-19 12:07:27 -06:00
|
|
|
classpath 'com.google.gms:google-services:4.3.3'
|
2019-09-18 15:29:09 -05:00
|
|
|
classpath 'io.fabric.tools:gradle:1.28.1'
|
|
|
|
|
|
|
|
// 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" }
|
2020-04-07 05:16:48 -05:00
|
|
|
maven { url "https://dl.bintray.com/undervoid/PowerPermission" }
|
2019-09-18 15:29:09 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
task clean(type: Delete) {
|
|
|
|
delete rootProject.buildDir
|
|
|
|
}
|