In my android studio project, I enable proguard for debug build type:
buildTypes {
debug {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-debug.txt'
}
}
The problem is after building the project I cannot find the mapping file! So where is the mapping file for debug build type? Or there is no mapping file for debug build type at all?