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-10-15 15:37:46 -05:00
|
|
|
kotlin_version = '1.5.30'
|
2019-09-18 15:29:09 -05:00
|
|
|
|
|
|
|
release = [
|
2022-04-18 04:31:24 -05:00
|
|
|
versionName: "4.11.5",
|
|
|
|
versionCode: 4110599
|
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()
|
2021-10-15 15:37:46 -05:00
|
|
|
mavenCentral()
|
2019-09-18 15:29:09 -05:00
|
|
|
}
|
|
|
|
dependencies {
|
2021-10-15 15:37:46 -05:00
|
|
|
classpath 'com.android.tools.build:gradle:7.0.3'
|
2021-03-21 15:01:28 -05:00
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
2021-09-02 10:49:01 -05:00
|
|
|
classpath 'com.google.gms:google-services:4.3.10'
|
|
|
|
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.7.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()
|
2021-10-15 15:37:46 -05:00
|
|
|
mavenCentral()
|
2019-09-18 15:29:09 -05:00
|
|
|
maven { url 'https://jitpack.io' }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
task clean(type: Delete) {
|
|
|
|
delete rootProject.buildDir
|
|
|
|
}
|