LeOS-Genesis/build.gradle

29 lines
716 B
Groovy
Raw Normal View History

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
jcenter()
2019-05-10 20:44:08 +02:00
maven { url 'https://maven.fabric.io/public' }
}
dependencies {
2019-06-15 19:13:52 +02:00
classpath 'com.android.tools.build:gradle:3.4.1'
classpath 'io.fabric.tools:gradle:1.29.0'
2019-06-24 21:48:05 +02:00
classpath 'com.google.gms:google-services:4.2.0'
}
}
allprojects {
repositories {
google()
jcenter()
maven { url 'https://jitpack.io' }
2019-05-10 20:44:08 +02:00
maven { url 'https://maven.fabric.io/public' }
2019-03-24 14:37:13 +01:00
maven { url 'https://maven.mozilla.org/maven2/' }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}