oncall-mobile-android/build.gradle

16 lines
505 B
Groovy
Raw Normal View History

buildscript {
2026-01-16 13:45:55 -05:00
ext.kotlin_version = '2.2.10'
dependencies {
2026-01-16 13:45:55 -05:00
classpath 'com.android.tools.build:gradle:9.0.0'
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
// 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 {
2026-01-16 13:45:55 -05:00
id 'com.google.devtools.ksp' version '2.3.2'
2025-03-20 22:15:23 -06:00
}