-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
25 lines (23 loc) · 1001 Bytes
/
build.gradle.kts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
buildscript {
dependencies {
classpath("com.android.tools.build:gradle:8.8.0-rc01")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:2.1.0")
classpath("com.google.gms:google-services:4.4.2")
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
plugins {
id("com.android.application") version "8.2.2" apply false
id("com.android.library") version "8.2.2" apply false
id("org.jetbrains.kotlin.android") version "2.1.0" apply false
id("com.android.test") version "8.2.2" apply false
id("androidx.baselineprofile") version "1.3.3" apply false
alias(libs.plugins.jetbrains.kotlin.multiplatform) apply false
alias(libs.plugins.android.kotlin.multiplatform.library) apply false
alias(libs.plugins.composeMultiplatform) apply false
alias(libs.plugins.composeCompiler) apply false
}
tasks.register<Delete>("clean") {
delete(rootProject.buildDir)
}