2021-10-25 15:01:10 +02:00
|
|
|
buildscript {
|
2022-11-19 01:54:32 +01:00
|
|
|
ext.kotlin_version = '1.6.21'
|
2021-10-25 15:01:10 +02:00
|
|
|
repositories {
|
|
|
|
google()
|
2022-11-19 02:08:24 +01:00
|
|
|
mavenCentral()
|
2021-10-25 15:01:10 +02:00
|
|
|
}
|
|
|
|
dependencies {
|
2022-11-23 18:55:19 +01:00
|
|
|
classpath 'com.android.tools.build:gradle:7.2.2'
|
2021-10-25 15:01:10 +02:00
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
2022-11-18 23:02:22 +01:00
|
|
|
classpath 'com.google.gms:google-services:4.3.14' // This is removed in the "fdroid" flavor
|
2021-10-25 15:01:10 +02:00
|
|
|
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
|
|
// in the individual module build.gradle files
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
|
|
|
google()
|
2022-11-19 02:08:24 +01:00
|
|
|
mavenCentral()
|
2022-01-10 21:36:50 +01:00
|
|
|
maven { url "https://jitpack.io" } // For StfalconImageViewer
|
2021-10-25 15:01:10 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
task clean(type: Delete) {
|
|
|
|
delete rootProject.buildDir
|
|
|
|
}
|