2020-01-24 16:23:31 +01:00
|
|
|
|
|
|
|
buildscript {
|
2021-06-22 07:48:26 +02:00
|
|
|
ext {
|
2022-02-09 15:20:58 +01:00
|
|
|
kotlin_version = '1.5.30'
|
2021-06-22 07:48:26 +02:00
|
|
|
}
|
2020-01-24 16:23:31 +01:00
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
mavenLocal()
|
2021-03-05 12:34:41 +01:00
|
|
|
mavenCentral()
|
2020-01-24 16:23:31 +01:00
|
|
|
}
|
|
|
|
dependencies {
|
2022-02-09 15:20:58 +01:00
|
|
|
classpath 'com.android.tools.build:gradle:7.1.1'
|
|
|
|
classpath 'com.google.gms:google-services:4.3.10'
|
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
2020-01-24 16:23:31 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
|
|
|
google()
|
2021-05-10 17:37:53 +02:00
|
|
|
mavenCentral()
|
2020-01-24 16:23:31 +01:00
|
|
|
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
|
|
|
|
}
|