2021-10-25 15:01:10 +02:00
|
|
|
buildscript {
|
2023-05-20 02:19:19 +02:00
|
|
|
ext.kotlin_version = '1.8.20'
|
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 {
|
2023-05-20 02:29:16 +02:00
|
|
|
classpath 'com.android.tools.build:gradle:7.4.2'
|
2021-10-25 15:01:10 +02:00
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
2023-05-20 02:19:19 +02:00
|
|
|
classpath 'com.google.gms:google-services:4.3.15' // 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()
|
2024-09-11 13:47:27 +02:00
|
|
|
maven { url 'https://gitlab.e.foundation/api/v4/groups/9/-/packages/maven'}
|
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
|
|
|
|
}
|