Fixed
Status Update
Comments
sp...@google.com <sp...@google.com>
xa...@google.com <xa...@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
Description
DESCRIBE THE ISSUE IN DETAIL:
STEPS TO REPRODUCE:
./gradlew foo:processDebugManifest
src/main/AndroidManifest.xml
4./gradlew foo:processDebugManifest
Expected
It runs and works
Actual
It crashes with
Rerunning with --no-configuration-cache fixes it.