oncall-mobile-android/build.gradle

31 lines
793 B
Groovy
Raw Normal View History

buildscript {
2025-03-20 22:15:23 -06:00
ext.kotlin_version = '2.0.21'
repositories {
google()
2022-11-18 20:08:24 -05:00
mavenCentral()
}
dependencies {
2025-09-16 17:37:58 -04:00
classpath 'com.android.tools.build:gradle:8.13.0'
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
// 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'
}
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
}
}
task clean(type: Delete) {
delete rootProject.buildDir
2025-03-20 22:15:23 -06:00
}