XuqmGroup-AndroidSDK/sdk-webview/proguard-rules.pro
2026-06-23 13:44:19 +08:00

13 行
597 B
Prolog

# All webview classes are public API consumed directly by app code
-keep public class com.xuqm.sdk.webview.** { public *; }
# XWebViewActivity is registered in AndroidManifest must not be renamed
-keep class com.xuqm.sdk.webview.XWebViewActivity
# Compose @Composable functions require annotation and signature retention
-keepattributes *Annotation*, Signature, InnerClasses, EnclosingMethod
# sdk-core internal classes (auth/network) appear "missing" after sdk-core's R8 pass
# when both modules build in the same Gradle invocation; suppress to allow compilation
-dontwarn com.xuqm.sdk.**