- ionic build android --release 报错
- TAG解决错误:Error:No resource identi
- Android 错误 'roundIcon' in packag
- apktool b 报错。No resource identif
- No resource identifier found for
- No resource identifier found for
- No resource identifier found for
- No resource identifier found for
- No resource identifier found for
- 反编译打包 No resource identifier fo
ionic cordova build android的时候报错
No resource identifier found for attribute 'appComponentFactory' in package 'android'
或者:error: resource android:attr/fontVariationSettings resource android:attr/ttcIndex not found.
解决方案如下:
在build.gradle 的allprojects里面加上
configurations.all {
resolutionStrategy.force 'com.android.support:support-v4:24.0.0'
}

网友评论