I\'m using ProGuard to obfuscate my Android app.
I\'m also using WebView to show a webpage (an HTML walkthrough page) that contains a button that will c
WebView
You can instruct ProGuard to keep all annotated methods:
-keepclassmembers class * { @android.webkit.JavascriptInterface ; }
This should probably be part of the default configuration in the Android SDK.