Files
arrest-tb/build.gradle

27 lines
631 B
Groovy
Raw Normal View History

2020-09-28 04:25:58 -07:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
jcenter()
}
dependencies {
2020-12-14 18:54:13 +05:30
classpath "com.android.tools.build:gradle:4.0.1"
classpath 'com.google.gms:google-services:4.2.0'
2020-09-28 04:25:58 -07:00
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
2020-12-14 18:54:13 +05:30
maven { url 'https://jitpack.io' }
2020-09-28 04:25:58 -07:00
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
2020-12-14 18:54:13 +05:30
}