Error:A problem was found with the configuration of task ':app:packageRelease'. File '/Volumes/Data/Android apps/NammaKarnataka-master/app/build/intermediates/res/resources-release-stripped.ap_' specified for property 'resourceFile' does not exist.
The following error message occurred while I tried to generate signed apk on Android studio 2.2.
What additional information is required in order to solve this issue?
Add shrinkResources
, set to false
, to the release
clause:
buildTypes {
release {
signingConfig signingConfigs.release
minifyEnabled false
shrinkResources false //ADD THIS
zipAlignEnabled true
debuggable false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With