2021-10-25 09:01:10 -04:00
|
|
|
buildscript {
|
2025-12-18 00:00:59 +01:00
|
|
|
ext.kotlin_version = '2.2.0'
|
2021-10-25 09:01:10 -04:00
|
|
|
dependencies {
|
2025-12-18 00:00:59 +01:00
|
|
|
classpath 'com.android.tools.build:gradle:8.13.2'
|
2021-10-25 09:01:10 -04:00
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
2025-12-18 00:00:59 +01:00
|
|
|
classpath 'com.google.gms:google-services:4.4.4' // 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 {
|
2025-12-18 00:00:59 +01:00
|
|
|
id 'com.google.devtools.ksp' version '2.2.0-2.0.2'
|
2025-03-20 22:15:23 -06:00
|
|
|
}
|