Upgrade android.jar to API 28

This commit is contained in:
Torsten Grote 2019-06-12 12:40:43 -03:00
parent a18806cf99
commit 3a9aec56b2
No known key found for this signature in database
GPG key ID: 3E5F77D92CF891FF
3 changed files with 8 additions and 1 deletions

View file

@ -69,7 +69,14 @@ preBuild.doLast {
}
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'
}

Binary file not shown.

Binary file not shown.