Browse Source

android: add missing ProGuard rules

master
Saúl Ibarra Corretgé 6 years ago
parent
commit
50b4212463
1 changed files with 9 additions and 1 deletions
  1. 9
    1
      android/app/proguard-rules.pro

+ 9
- 1
android/app/proguard-rules.pro View File

@@ -73,6 +73,15 @@
73 73
   public *;
74 74
 }
75 75
 
76
+# WebRTC
77
+
78
+-keep class org.webrtc.** { *; }
79
+-dontwarn org.chromium.build.BuildHooksAndroid
80
+
81
+# Jisti Meet SDK
82
+
83
+-keep class org.jitsi.meet.sdk.** { *; }
84
+
76 85
 # We added the following when we switched minifyEnabled on. Probably because we
77 86
 # ran the app and hit problems...
78 87
 
@@ -83,7 +92,6 @@
83 92
 -keep class com.facebook.react.bridge.ReadableType { *; }
84 93
 -keep class com.facebook.react.bridge.queue.NativeRunnable { *; }
85 94
 -keep class com.facebook.react.devsupport.** { *; }
86
--keep class org.webrtc.** { *; }
87 95
 
88 96
 -dontwarn com.facebook.react.devsupport.**
89 97
 -dontwarn com.google.appengine.**

Loading…
Cancel
Save