Prevent Proguard to remove specific drawables

2019-01-12 03:14发布

In my Android project, I have some images stored in res/drawable/ which are accessed only from an HTML file loaded in a Webview. For example (code in HTML):

<img src="file:///android_res/drawable/myfriend.png">

These images are removed by Proguard from apk during optimization.

Does somebody know a way to keep these files (even if they are not used directly in the java code)?

2条回答
forever°为你锁心
2楼-- · 2019-01-12 03:21

I had a similar issue and wanted to add just a few bits.

The resources ARE NOT stripped away by ProGuard. If you simply unzip your apk you will see that the image files are still there.

The problem is that the Webkit FileLoader will try and load your R$drawable class using reflection. If you do not add any keep rule to your proguard.cfg file that class will be renamed, hence Webkit will not be able to load your resource.

By placing the file into the assets folder your are bypassing the R class system and everything will work.

This is not a solution though if, for example, you want to use different resources for different densities.

I suggest you simply add a very basic keep rule to preserve R inner classes and fields:

-keepclassmembers class **.R$* {
    public static <fields>;
}

-keep class **.R$*
查看更多
Animai°情兽
3楼-- · 2019-01-12 03:25

I moved the images to the 'assets' folder which solved my problem:

<img src="file:///android_asset/myfriend.png">
查看更多
登录 后发表回答