We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7fa8e40 commit 9566f59Copy full SHA for 9566f59
.changeset/fix-proguard-jni-zero.md
@@ -0,0 +1,5 @@
1
+---
2
+"client-sdk-android": patch
3
4
+
5
+Fixed ProGuard rules to keep JniInit class for WebRTC native registration (#735)
livekit-android-sdk/consumer-rules.pro
@@ -24,6 +24,12 @@
24
#########################################
25
-keep class livekit.org.webrtc.** { *; }
26
27
+# JNI Zero initialization (required for WebRTC native method registration)
28
+-keep class livekit.org.jni_zero.JniInit {
29
+ # Keep the init method un-obfuscated for native code callback
30
+ private static java.lang.Object[] init();
31
+}
32
33
# NIST sdp parser
34
35
-keep class android.gov.nist.** { *; }
0 commit comments