@capgo/capacitor-updater 7.8.6 → 7.8.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -28,3 +28,21 @@
28
28
 
29
29
  # Keep all Guava reflect types (required for TypeToken)
30
30
  -keep class com.google.common.reflect.** { *; }
31
+
32
+ # Preserve Capacitor classes and members accessed via reflection for autoSplashscreen
33
+ # These rules are safe even if SplashScreen plugin is not present - they only reference core Capacitor classes
34
+ -keep class com.getcapacitor.Bridge {
35
+ com.getcapacitor.MessageHandler msgHandler;
36
+ }
37
+
38
+ -keep class com.getcapacitor.MessageHandler { *; }
39
+
40
+ -keep class com.getcapacitor.PluginCall {
41
+ <init>(com.getcapacitor.MessageHandler, java.lang.String, java.lang.String, java.lang.String, com.getcapacitor.JSObject);
42
+ }
43
+
44
+ # Keep SplashScreen plugin methods that are called via reflection
45
+ # This applies to any plugin, not just SplashScreen
46
+ -keep class * implements com.getcapacitor.PluginHandle {
47
+ public void invoke(java.lang.String, com.getcapacitor.PluginCall);
48
+ }
@@ -59,7 +59,7 @@ public class CapacitorUpdaterPlugin extends Plugin {
59
59
  private static final String statsUrlDefault = "https://plugin.capgo.app/stats";
60
60
  private static final String channelUrlDefault = "https://plugin.capgo.app/channel_self";
61
61
 
62
- private final String PLUGIN_VERSION = "7.8.6";
62
+ private final String PLUGIN_VERSION = "7.8.8";
63
63
  private static final String DELAY_CONDITION_PREFERENCES = "";
64
64
 
65
65
  private SharedPreferences.Editor editor;
@@ -86,7 +86,7 @@ public class CapacitorUpdaterPlugin: CAPPlugin, CAPBridgedPlugin {
86
86
  CAPPluginMethod(name: "isShakeMenuEnabled", returnType: CAPPluginReturnPromise)
87
87
  ]
88
88
  public var implementation = CapgoUpdater()
89
- private let PLUGIN_VERSION: String = "7.8.6"
89
+ private let PLUGIN_VERSION: String = "7.8.8"
90
90
  static let updateUrlDefault = "https://plugin.capgo.app/updates"
91
91
  static let statsUrlDefault = "https://plugin.capgo.app/stats"
92
92
  static let channelUrlDefault = "https://plugin.capgo.app/channel_self"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capgo/capacitor-updater",
3
- "version": "7.8.6",
3
+ "version": "7.8.8",
4
4
  "license": "MPL-2.0",
5
5
  "description": "Live update for capacitor apps",
6
6
  "main": "dist/plugin.cjs.js",