shrinkResources set to true, but all unused resources (specifically drawables) not getting removed
问题 I'm setting shrinkResources to true as follows: releasepro { minifyEnabled true shrinkResources true proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' applicationIdSuffix ".pro" } But this is removing only a few unused resources. I am aware that gradle does some guessing and leaves resources that is is not sure are unused. Is there a way to remove all unused resources 100% ? I read about setting the shrinkMode to strict in another thread. Will that help? I