1KA_F2F/mobileApp/1KAPanel/build.gradle
2020-08-14 13:36:36 +02:00

38 lines
905 B
Groovy

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
maven { url 'https://maven.fabric.io/public' }
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.3.1'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
classpath 'com.google.gms:google-services:4.2.0'
classpath 'io.fabric.tools:gradle:1.25.4'
}
}
allprojects {
repositories {
google()
jcenter()
flatDir {
dirs 'libs'
}
maven {
url "https://maven.google.com" // Google's Maven repository
maven { url 'https://maven.fabric.io/public' }
}
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}