I'm trying to reduce the APK size. So as suggested by Google I used shrinkResources
and it requires minifyEnabled
to be true
in bulid.gradle
buildTypes {
release {
minifyEnabled true
shrinkResources true
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'),
'proguard-rules.pro'
}
}
But the problem is once this is done, the build never ends.
proguard-rules.pro
is empty I haven't changed anything in it. And, something called Unmanaged thread operation #-1
also appeared.
What would be the issue?