本文章分析解决在android打包编译时,配置了shrinkResources为true移除无用资源时打包报错的解决方案
1 Android 打包失败Android 项目打包或者在 flutter项目中打包 apk 打包失败,异常日志如下
* What went wrong:
A problem occurred evaluating root project 'android'.
> A problem occurred configuring project ':app'.
> Removing unused resources requires unused code shrinking to be turned on. See http://d.android.com/r/tools/shrink-resources.html for more information.
* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.
2 解决方案
在android 项目目录下的 build.gradle 文件中配置
release {
signingConfig signingConfigs.app_key
////是否对代码进行混淆
minifyEnabled false
// A problem occurred configuring project ':app'. minifyEnabled 与 shrinkResources 搭配使用
shrinkResources false
//指定混淆的规则文件
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
或者
release {
signingConfig signingConfigs.app_key
////是否对代码进行混淆
minifyEnabled true
// A problem occurred configuring project ':app'. minifyEnabled 与 shrinkResources 搭配使用
shrinkResources true
//指定混淆的规则文件
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
就是说 如果我们需要移除项目无用资源,就必须同时打开混淆配置。
4 Android打包设置shrinkResources true引发的问题分析当配置 shrinkResources 的值为 true 时,gradle 在打包编译的时候会将未引用的例如图片等资源文件移除。
那么常见的一个问题就是例如聊天或者论坛中使用到的表情等解析,因为这一类的表情图片是根据聊天信息中的标识匹配显示的,而且是动态获取资源id,在打包时示引用,会被当作无用资源移除,造成的结果就是无法解析显示表情图片
保留使用到的图片,使用是并没有在程序中引用,在打包时也开启了 shrinkResources 的值为 true 移除无用资源,可做如下配置
在raw下配置keep.xml文件
例如上述配置中,保留 mipmap 目录下的未引用的图片 ic_share_icon.png 、ic_like_icon.png
完毕
作者:早起的年轻人