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.
解决方法
将shrinkResources(设置为false)添加到release子句:
buildTypes { release { signingConfig signingConfigs.release minifyEnabled false shrinkResources false //ADD THIS zipAlignEnabled true debuggable false proguardFiles getDefaultProguardFile('proguard-android.txt'),'proguard-rules.pro' } }