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 {
|
2021-03-21 15:01:28 -05:00
|
|
|
kotlin_version = '1.4.31'
|
2019-09-18 15:29:09 -05:00
|
|
|
|
|
|
|
release = [
|
2021-04-05 14:04:29 -05:00
|
|
|
versionName: "4.7-rc.2",
|
|
|
|
versionCode: 4070020
|
2019-09-18 15:29:09 -05:00
|
|
|
]
|
|
|
|
|
|
|
|
setup = [
|
2021-02-17 07:43:00 -06:00
|
|
|
compileSdk: 30,
|
2019-09-18 15:29:09 -05:00
|
|
|
minSdk : 16,
|
2021-02-17 07:43:00 -06:00
|
|
|
targetSdk : 30
|
2019-09-18 15:29:09 -05:00
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
jcenter()
|
|
|
|
}
|
|
|
|
dependencies {
|
2021-03-21 15:01:28 -05:00
|
|
|
classpath "com.android.tools.build:gradle:4.2.0-beta06"
|
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
2021-02-17 07:42:08 -06:00
|
|
|
classpath 'com.google.gms:google-services:4.3.5'
|
2021-03-21 15:01:28 -05:00
|
|
|
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.5.1'
|
2019-09-18 15:29:09 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
|
}
|