Android Proguard Javascript Interface Fail

后端 未结 4 1587
野性不改
野性不改 2020-11-28 11:51

I use in my project a piece of code as described here

http://lexandera.com/2009/01/extracting-html-from-a-webview/

I create the .apk file, install it on my d

4条回答
  •  陌清茗
    陌清茗 (楼主)
    2020-11-28 12:23

    As suggested by edit in question, out of those suggestions, only using

    -keepclassmembers class com.mypackage.MyClass$MyJavaScriptInterface { public *; }

    with Important -

    For API 17+ to preserve @JavascriptInterface annotations:

    -keepattributes JavascriptInterface

    (Which was stopping my app to work on Marshmallow)

提交回复
热议问题