Upgrade android.jar to API 28
This commit is contained in:
parent
a18806cf99
commit
3a9aec56b2
3 changed files with 8 additions and 1 deletions
|
@ -69,7 +69,14 @@ preBuild.doLast {
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
compileOnly fileTree(include: ['android.jar', 'libcore.jar'], dir: 'libs')
|
// To produce these binaries, in latest AOSP source tree, run
|
||||||
|
// $ make
|
||||||
|
compileOnly fileTree(include: [
|
||||||
|
// out/target/common/obj/JAVA_LIBRARIES/framework_intermediates/classes.jar
|
||||||
|
'android.jar',
|
||||||
|
// out/target/common/obj/JAVA_LIBRARIES/core-libart_intermediates/classes.jar
|
||||||
|
'libcore.jar'
|
||||||
|
], dir: 'libs')
|
||||||
|
|
||||||
implementation group: 'commons-io', name: 'commons-io', version: '2.6'
|
implementation group: 'commons-io', name: 'commons-io', version: '2.6'
|
||||||
}
|
}
|
||||||
|
|
Binary file not shown.
Binary file not shown.
Loading…
Add table
Reference in a new issue