mirror of https://github.com/LeOS-GSI/LeOS-Genesis
35 lines
924 B
Groovy
Executable File
35 lines
924 B
Groovy
Executable File
|
|
buildscript {
|
|
repositories {
|
|
google()
|
|
jcenter()
|
|
maven { url 'https://maven.fabric.io/public' }
|
|
mavenLocal()
|
|
}
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:3.5.3'
|
|
classpath 'io.fabric.tools:gradle:1.31.0'
|
|
classpath 'com.google.gms:google-services:4.3.3'
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
google()
|
|
jcenter()
|
|
maven { url 'https://maven.fabric.io/public' }
|
|
maven { url 'https://maven.mozilla.org/maven2/' }
|
|
maven {
|
|
url "https://jitpack.io"
|
|
credentials { username "48a9b4c06b5dabbc03328ddcdbb7dfd8fab253ae" }
|
|
}
|
|
maven { url 'https://jitpack.io' }
|
|
mavenLocal()
|
|
maven { url "https://raw.githubusercontent.com/guardianproject/gpmaven/master" }
|
|
}
|
|
}
|
|
|
|
task clean(type: Delete) {
|
|
delete rootProject.buildDir
|
|
}
|