Fixed
Status Update
Comments
au...@google.com <au...@google.com> #2
So changing this section in my app/build.gradle
file:
androidResources {
noCompress 'tflite'
}
to this:
androidResources.noCompress = "tflite"
Solves my issue. I still consider this a bug though...
au...@google.com <au...@google.com> #3
This will be fixed in AGP 7.1.0-alpha07 (before then it accidentally has an 'it' reciever)
androidResources {
it.noCompress 'tflite'
}
It might be worth backporting the fix for a 7.0.1, or at least removing the deprecation of the aaptOptions block so others aren't lead to this broken path
uc...@google.com <uc...@google.com>
ga...@google.com <ga...@google.com> #5
We can fully remove that dependency (also fastutil), as this we needed only when we were building R8 from sources in tools/base.
Description
AGP today depends on
com.googlecode.json-simple:json-simple:1.1
which is a version that is not signed. That means anyone using signature verification is required to allowlist this artifact.com.googlecode.json-simple:json-simple:1.1.1
is signed and binary compatible, so it would be great if AGP would depend on that instead.