Prevent Proguard to remove specific drawables

前端 未结 3 911
情话喂你
情话喂你 2020-12-03 14:24

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):

相关标签:
3条回答
  • 2020-12-03 15:00

    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$*
    
    0 讨论(0)
  • 2020-12-03 15:00

    For localized simple htmls (no linked localized local files/images)

    Use this Proguard rule for raw folder:

    -keep class com.example.appname.R$raw { *; }
    

    Example Url for WebView:

    file:///android_res/raw/filename.html

    Example folder structure:

    res/raw/filename.html

    res/raw-en/filename.html

    res/raw-hu/filename.html

    0 讨论(0)
  • 2020-12-03 15:08

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

    <img src="file:///android_asset/myfriend.png">
    
    0 讨论(0)
提交回复
热议问题