I enabled proguard for my release build and when I ran the project, I get these warnings and errors. Here is my buildTypes
block:
buildTypes {
release {
minifyEnabled true
//shrinkResources true
signingConfig signingConfigs.myConfig
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
The build message was too long to post here so have put external link. What is the reason for these warnings? Is there something I have done wrong? How can I fix this?