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 7a9517b commit ea5b122Copy full SHA for ea5b122
android/app/build.gradle
@@ -51,6 +51,8 @@ android {
51
// TODO: Add your own signing config for the release build.
52
// Signing with the debug keys for now, so `flutter run --release` works.
53
signingConfig signingConfigs.debug
54
+ useProguard true
55
+ proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
56
}
57
58
packagingOptions {
android/app/proguard-rules.pro
@@ -0,0 +1,3 @@
1
+## Flutter WebRTC
2
+-keep class com.cloudwebrtc.webrtc.** { *; }
3
+-keep class org.webrtc.** { *; }
0 commit comments