2021-10-25 09:01:10 -04:00
|
|
|
buildscript {
|
2025-03-20 22:15:23 -06:00
|
|
|
ext.kotlin_version = '2.0.21'
|
2021-10-25 09:01:10 -04:00
|
|
|
repositories {
|
|
|
|
|
google()
|
2022-11-18 20:08:24 -05:00
|
|
|
mavenCentral()
|
2021-10-25 09:01:10 -04:00
|
|
|
}
|
|
|
|
|
dependencies {
|
2025-09-16 17:37:58 -04:00
|
|
|
classpath 'com.android.tools.build:gradle:8.13.0'
|
2021-10-25 09:01:10 -04:00
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
2023-05-19 20:19:19 -04:00
|
|
|
classpath 'com.google.gms:google-services:4.3.15' // This is removed in the "fdroid" flavor
|
2021-10-25 09:01:10 -04:00
|
|
|
|
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
|
|
|
// in the individual module build.gradle files
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2025-03-20 22:15:23 -06:00
|
|
|
plugins {
|
|
|
|
|
id 'com.google.devtools.ksp' version '2.0.21-1.0.27'
|
|
|
|
|
}
|
|
|
|
|
|
2021-10-25 09:01:10 -04:00
|
|
|
allprojects {
|
|
|
|
|
repositories {
|
|
|
|
|
google()
|
2022-11-18 20:08:24 -05:00
|
|
|
mavenCentral()
|
2022-01-10 15:36:50 -05:00
|
|
|
maven { url "https://jitpack.io" } // For StfalconImageViewer
|
2021-10-25 09:01:10 -04:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
task clean(type: Delete) {
|
|
|
|
|
delete rootProject.buildDir
|
2025-03-20 22:15:23 -06:00
|
|
|
}
|