Disable PNG cruncher and PNG generation for vector drawables

pull/1650/head
Alexander Bakker 5 months ago
parent 819865230f
commit 6c40cfa748

@ -93,6 +93,14 @@ android {
}
}
// Required to make the APK reproducible
aaptOptions {
cruncherEnabled = false
}
defaultConfig {
vectorDrawables.generatedDensities = []
}
packagingOptions {
// R8 doesn't remove these resources, so exclude them manually. This reduces APK size by 4MB.
resources {

Loading…
Cancel
Save