forked from gurecn/YuyanIme
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
26 lines (24 loc) · 724 Bytes
/
build.gradle
File metadata and controls
26 lines (24 loc) · 724 Bytes
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
26
buildscript {
repositories {
gradlePluginPortal()
maven { url 'https://maven.aliyun.com/repository/public' }
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.3.2'
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.22'
classpath 'org.jetbrains.kotlin:kotlin-serialization:2.0.0'
classpath 'com.google.devtools.ksp:com.google.devtools.ksp.gradle.plugin:2.0.0-1.0.23'
}
}
allprojects {
repositories {
gradlePluginPortal()
maven { url 'https://maven.aliyun.com/repository/public' }
mavenCentral()
google()
}
}
tasks.register('clean', Delete) {
delete project.layout.buildDirectory
}