As Error:app\build\intermediates\res\resources-xxx-stripped.ap_' specified for property 'res

app\build\intermediates\res\resources-xxx-stripped.ap_' specified for property 'resourceFile' does not exist.

1、问题定位:出现这种情况可以分析是资源文件的问题,定位在build.gradle中的shrinkResources

2、解决方法:首先确定自己的项目是否要混淆,minifyEnabled 是否混淆,shrinkResources 是否移除无用的resource文件
不用混淆的话写下面两句,或者直接去掉这两句

android{
	buildTypes {
        release {
	        ...
			minifyEnabled false 
			shrinkResources false
		}
	}
}

用混淆的话写下面两句

minifyEnabled true 
shrinkResources true 

如果不混淆的话,apk就会多几M;要混淆的话就必须要上面两个为true,还有必须在混淆文件中写规则,不然又有另外一些错误。

你可能感兴趣的:(AS常见报错,android-studio)