Reputation: 51
I have several projects in Android Studio. I am using
buildTypes {
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
in my gradle script. I have updated Android Studio to the latest version and use the latest version of build tools. However, the proguard files, for example, mapping.txt, are never generated. What am I doing wrong? Thanks in advance!
Upvotes: 0
Views: 1428
Reputation: 51
I have solved this problem. The steps are:
Upvotes: 1