-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
13 lines (13 loc) · 1.16 KB
/
build.gradle.kts
1
2
3
4
5
6
7
8
9
10
11
12
13
plugins {
id("com.android.application") version "8.7.2" apply false // https://developer.android.com/build/releases/past-releases
id("org.jetbrains.kotlin.android") version "2.0.20" apply false // https://kotlinlang.org/docs/whatsnew2020.html
id("org.jetbrains.kotlin.plugin.compose") version "2.0.20" apply false // https://kotlinlang.org/docs/whatsnew2020.html
id("com.google.devtools.ksp") version "2.0.20-1.0.25" apply false // https://github.com/google/ksp/releases
id("com.google.gms.google-services") version "4.4.2" apply false // https://firebase.google.com/support/release-notes/android
id("com.google.firebase.crashlytics") version "3.0.2" apply false
id("com.autonomousapps.dependency-analysis") version "2.1.4" apply false // unused dependencies, :buildHealth https://github.com/autonomousapps/dependency-analysis-gradle-plugin/blob/main/CHANGELOG.md
id("de.jensklingenberg.ktorfit") version "2.1.0" apply false // https://foso.github.io/Ktorfit/CHANGELOG/
kotlin("plugin.serialization") version "2.0.20" apply false
id("com.android.test") version "8.7.2" apply false
id("androidx.baselineprofile") version "1.3.3" apply false
}