-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.gradle
56 lines (45 loc) · 1.73 KB
/
build.gradle
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
buildscript {
ext {
// agp_version= '8.1.1'
// kotlin_version = '1.9.10'
// coroutines_version = '1.7.3'
// compose_bom_version = '2023.08.00'
// compose_compiler_version = '1.5.3'
//okhttp_version = '4.11.0'
// glide_version = '4.16.0'
compile_sdk_version = 35
build_tool_version = '35.0.0'
}
}
plugins {
//id 'com.android.application' version "$agp_version" apply false
//id 'com.android.library' version "$agp_version" apply false
alias(libs.plugins.android.application) apply false
alias(libs.plugins.android.library) apply false
alias(libs.plugins.kotlin.android) apply false
alias(libs.plugins.gradle.download) apply false
alias(libs.plugins.androidx.benchmark) apply false
alias(libs.plugins.ksp) apply false
//id 'org.jetbrains.kotlin.android' version "$kotlin_version" apply false
//id "de.undercouch.download" version "5.5.0" apply false
//id 'androidx.benchmark' version '1.2.0-beta05' apply false
//id 'com.google.devtools.ksp' version '1.9.10-1.0.13' apply false
//id "org.gradle.android.cache-fix" version "2.7.3" apply false
}
tasks.register('clean', Delete) {
//delete rootProject.buildDir
delete rootProject.layout.buildDirectory
}
subprojects { project ->
// tasks.withType(JavaCompile).configureEach {
// javaCompiler = javaToolchains.compilerFor {
// languageVersion = JavaLanguageVersion.of(17)
// }
// }
// tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile) {
// //kotlinOptions.jvmTarget = "11"
// }
// plugins.withType(com.android.build.gradle.api.AndroidBasePlugin) {
// //project.apply plugin: "org.gradle.android.cache-fix"
// }
}