2020-01-24 16:23:31 +01:00
|
|
|
|
|
|
|
buildscript {
|
2021-01-18 11:07:12 +01:00
|
|
|
ext.kotlinVersion = '1.1.51'
|
2020-01-24 16:23:31 +01:00
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
jcenter()
|
|
|
|
mavenLocal()
|
2021-03-05 12:34:41 +01:00
|
|
|
mavenCentral()
|
2020-01-24 16:23:31 +01:00
|
|
|
}
|
|
|
|
dependencies {
|
2021-03-23 12:52:22 +01:00
|
|
|
classpath 'com.android.tools.build:gradle:4.1.3'
|
2021-03-05 12:34:41 +01:00
|
|
|
classpath 'com.google.gms:google-services:4.3.5'
|
2021-03-23 12:52:22 +01:00
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.4.31"
|
2020-01-24 16:23:31 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
jcenter()
|
|
|
|
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
|
|
|
|
}
|