2020-01-20 15:53:22 -08:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
|
|
|
|
|
|
buildscript {
|
2020-11-28 08:24:32 +08:00
|
|
|
ext.kotlin_version = '1.4.20'
|
2020-08-15 12:24:17 -07:00
|
|
|
ext.coroutines_version = "1.3.9"
|
2020-04-05 12:56:57 -07:00
|
|
|
|
2020-01-20 15:53:22 -08:00
|
|
|
repositories {
|
|
|
|
|
google()
|
|
|
|
|
jcenter()
|
2020-01-22 18:32:21 -08:00
|
|
|
mavenCentral()
|
2020-01-20 15:53:22 -08:00
|
|
|
}
|
|
|
|
|
dependencies {
|
2020-11-11 12:50:27 +08:00
|
|
|
classpath 'com.android.tools.build:gradle:4.1.1'
|
2020-01-20 15:53:22 -08:00
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
2020-04-19 17:25:20 -07:00
|
|
|
classpath "org.jetbrains.kotlin:kotlin-serialization:$kotlin_version"
|
|
|
|
|
|
2020-01-20 15:53:22 -08:00
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
|
|
|
// in the individual module build.gradle files
|
2020-01-22 09:28:59 -08:00
|
|
|
|
2020-01-22 13:40:57 -08:00
|
|
|
// Add the Crashlytics Gradle plugin.
|
|
|
|
|
// Check that you have the Google Services Gradle plugin v4.3.2 or later
|
|
|
|
|
// (if not, add it).
|
2020-11-11 12:50:27 +08:00
|
|
|
classpath 'com.google.gms:google-services:4.3.4'
|
2020-11-28 08:24:32 +08:00
|
|
|
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.4.1'
|
2020-01-22 18:32:21 -08:00
|
|
|
|
|
|
|
|
// protobuf plugin - docs here https://github.com/google/protobuf-gradle-plugin
|
2020-11-28 08:24:32 +08:00
|
|
|
classpath 'com.google.protobuf:protobuf-gradle-plugin:0.8.14'
|
2020-07-20 12:08:46 -07:00
|
|
|
|
|
|
|
|
//classpath "app.brant:amazonappstorepublisher:0.1.0"
|
|
|
|
|
classpath 'com.github.triplet.gradle:play-publisher:2.8.0'
|
2020-01-20 15:53:22 -08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
|
repositories {
|
|
|
|
|
google()
|
|
|
|
|
jcenter()
|
2020-06-05 20:22:45 -07:00
|
|
|
maven { url 'https://jitpack.io' }
|
2020-07-20 12:08:46 -07:00
|
|
|
//maven { url "https://plugins.gradle.org/m2/" }
|
2020-01-20 15:53:22 -08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
task clean(type: Delete) {
|
|
|
|
|
delete rootProject.buildDir
|
|
|
|
|
}
|