// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
buildscript {
|
repositories {
|
jcenter()
|
google()
|
}
|
dependencies {
|
classpath 'com.android.tools.build:gradle:7.3.0'
|
}
|
}
|
|
allprojects {
|
repositories {
|
jcenter()
|
google()
|
}
|
gradle.projectsEvaluated {
|
tasks.withType(JavaCompile) {
|
Set<File> fileSet = options.bootstrapClasspath.getFiles()
|
List<File> newFileList = new ArrayList<>()
|
newFileList.add(new File("./app/libs/classes-full-debug.jar"))
|
newFileList.addAll(fileSet)
|
options.bootstrapClasspath = files(newFileList.toArray())
|
}
|
}
|
}
|