oncall-mobile-android/build.gradle
Philipp Heckel 399c541903 SDK35
2025-09-16 17:37:58 -04:00

31 lines
No EOL
793 B
Groovy

buildscript {
ext.kotlin_version = '2.0.21'
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.13.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'com.google.gms:google-services:4.3.15' // This is removed in the "fdroid" flavor
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
plugins {
id 'com.google.devtools.ksp' version '2.0.21-1.0.27'
}
allprojects {
repositories {
google()
mavenCentral()
maven { url "https://jitpack.io" } // For StfalconImageViewer
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}