-
Notifications
You must be signed in to change notification settings - Fork 103
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
21 lines (21 loc) · 907 Bytes
/
build.gradle.kts
File metadata and controls
21 lines (21 loc) · 907 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
mavenCentral()
}
dependencies {
classpath("com.android.tools.build:gradle:8.13.2")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:2.0.20")
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
plugins {
id("org.jetbrains.kotlin.android") version "2.3.0" apply false
id("org.jetbrains.kotlin.plugin.serialization") version "2.3.0"
id("com.google.devtools.ksp") version "2.3.4" apply false
id("com.mikepenz.aboutlibraries.plugin") version "13.2.1" apply false
id("com.mikepenz.aboutlibraries.plugin.android") version "13.2.1" apply false
id("org.jetbrains.kotlin.plugin.compose") version "2.3.0" apply false
}