Android14Settings/build.gradle

34 lines
1.3 KiB
Groovy
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
alias(libs.plugins.android.application) apply false
alias(libs.plugins.kotlin.android) apply false
alias(libs.plugins.android.library) apply false
}
//allprojects {
// gradle.projectsEvaluated {
// tasks.withType(JavaCompile).tap {
// configureEach {
// Set<File> fileSet
// if (options.bootstrapClasspath != null ) {
// fileSet = options.bootstrapClasspath.getFiles()
// System.out.println("bootstrapClasspath: null")
// }else {
// fileSet = new HashSet<>()
// }
//
// List<File> newFileList = new ArrayList<>()
// //JAVA语法可连续调用输入参数建议为相对路径
// newFileList.add(new File("./libs/framework.jar"))
// //最后将原始参数添加
// newFileList.addAll(fileSet)
// options.bootstrapClasspath = files(
// newFileList.toArray()
// )
// for (File file : options.bootstrapClasspath) {
// System.out.println("bootstrapClasspath: " + file.getAbsolutePath())
// }
// }
// }
// }
//}