예시)
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
if (System.getenv("ANDROID_BUILD_TOP") != null) {
String path = System.getenv("ANDROID_BUILD_TOP")
/* System build */
String[] libraries = System.getenv("LOCAL_JAVA_LIBRARIES").split(" ")
for (def library : libraries) {
dependencies.add("compileOnly", files(path + "/" + library))
}
libraries = System.getenv("LOCAL_STATIC_JAVA_LIBRARIES")
for (def library : libraries) {
dependencies.add("implementation", files(path + "/" + library)).split(" ")
}
}