VancedManager/build.gradle

37 lines
987 B
Groovy
Raw Normal View History

2020-03-16 15:41:57 +00:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
2020-08-27 10:50:43 +00:00
ext.kotlin_version = '1.3.72'
2020-03-16 15:41:57 +00:00
repositories {
google()
jcenter()
}
dependencies {
2020-08-07 06:37:40 +00:00
classpath 'com.android.tools.build:gradle:4.0.1'
2020-03-16 15:41:57 +00:00
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
2020-08-05 16:20:19 +00:00
classpath 'com.google.gms:google-services:4.3.3'
2020-08-07 07:33:56 +00:00
classpath 'com.google.firebase:perf-plugin:1.3.1'
2020-08-08 16:56:08 +00:00
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.2.0'
2020-08-25 09:05:20 +00:00
classpath 'androidx.navigation:navigation-safe-args-gradle-plugin:2.3.0'
2020-03-16 15:41:57 +00:00
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
maven {
url "https://jitpack.io"
}
2020-04-10 14:06:01 +00:00
2020-03-16 15:41:57 +00:00
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}