File tree Expand file tree Collapse file tree 1 file changed +14
-0
lines changed
fern/docs/pages/sdks/mobile/android Expand file tree Collapse file tree 1 file changed +14
-0
lines changed Original file line number Diff line number Diff line change 11
11
12
12
- ** Issue** : Not receiving push notifications.
13
13
** Solution** : Ensure that your app is configured to receive push notifications and that your device is registered with the DevRev SDK.
14
+
15
+ ## Proguard
16
+
17
+ - ** Issue** : Missing class ` com.google.android.play.core.splitcompat.SplitCompatApplication ` .
18
+ ** Solution** : Add the following line to your ` proguard-rules.pro ` file: ` -dontwarn com.google.android.play.core.** ` .
19
+
20
+ - ** Issue** : Missing class issue due to transitive Flutter dependencies.
21
+ ** Solution** : Add the following lines to your ` proguard-rules.pro ` file:
22
+ ``` bash
23
+ -keep class io.flutter.** { * ; }
24
+ -keep class io.flutter.plugins.** { * ; }
25
+ -keep class GeneratedPluginRegistrant { * ; }
26
+ ```
27
+
You can’t perform that action at this time.
0 commit comments