8 lines
335 B
Prolog
8 lines
335 B
Prolog
# Keep JavaScript bridge entry points callable from WebView JavaScript.
|
|
-keepclassmembers class * {
|
|
@android.webkit.JavascriptInterface <methods>;
|
|
}
|
|
|
|
# Keep the manifest-declared Argus package installer callback constructable by Android.
|
|
-keep class xyz.kusoft.argusupdater.ArgusPackageInstallerStatusReceiver { public <init>(); }
|