forked from jing332/tts-server-android
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
23 lines (21 loc) · 751 Bytes
/
build.gradle
File metadata and controls
23 lines (21 loc) · 751 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
buildscript {
ext {
kotlin_version = '1.9.22'
agp_version = '8.4.0'
compose_compiler = "1.5.8"
room_version = '2.6.1'
ksp_version = '1.9.22-1.0.17'
about_lib_version = "10.9.2"
}
}
plugins {
id 'com.android.application' version "$agp_version" apply false
id 'com.android.library' version "$agp_version" apply false
id 'org.jetbrains.kotlin.android' version "$kotlin_version" apply false
id 'org.jetbrains.kotlin.plugin.serialization' version "$kotlin_version"
id("com.google.devtools.ksp") version "$ksp_version" apply false
id("com.mikepenz.aboutlibraries.plugin") version "$about_lib_version" apply false
}
task clean(type: Delete) {
delete rootProject.buildDir
}