@capgo/capacitor-updater 5.3.9 → 5.3.11

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.
@@ -11,7 +11,7 @@ buildscript {
11
11
  mavenCentral()
12
12
  }
13
13
  dependencies {
14
- classpath 'com.android.tools.build:gradle:8.1.1'
14
+ classpath 'com.android.tools.build:gradle:8.1.2'
15
15
  }
16
16
  }
17
17
 
@@ -58,7 +58,7 @@ public class CapacitorUpdaterPlugin extends Plugin {
58
58
  private static final String channelUrlDefault =
59
59
  "https://api.capgo.app/channel_self";
60
60
 
61
- private final String PLUGIN_VERSION = "5.3.9";
61
+ private final String PLUGIN_VERSION = "5.3.11";
62
62
  private static final String DELAY_CONDITION_PREFERENCES = "";
63
63
 
64
64
  private SharedPreferences.Editor editor;
@@ -163,7 +163,7 @@ public class CapacitorUpdaterPlugin extends Plugin {
163
163
  this.implementation.appId = config.getString("appId", "");
164
164
  this.implementation.appId =
165
165
  this.getConfig().getString("appId", this.implementation.appId);
166
- if (!"".equals(implementation.appId)) {
166
+ if ("".equals(implementation.appId)) {
167
167
  Log.i(CapacitorUpdater.TAG, "appId: " + implementation.appId);
168
168
  throw new RuntimeException("appId is required");
169
169
  }
@@ -15,7 +15,7 @@ import Version
15
15
  @objc(CapacitorUpdaterPlugin)
16
16
  public class CapacitorUpdaterPlugin: CAPPlugin {
17
17
  public var implementation = CapacitorUpdater()
18
- private let PLUGIN_VERSION: String = "5.3.9"
18
+ private let PLUGIN_VERSION: String = "5.3.11"
19
19
  static let updateUrlDefault = "https://api.capgo.app/updates"
20
20
  static let statsUrlDefault = "https://api.capgo.app/stats"
21
21
  static let channelUrlDefault = "https://api.capgo.app/channel_self"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capgo/capacitor-updater",
3
- "version": "5.3.9",
3
+ "version": "5.3.11",
4
4
  "packageManager": "pnpm@8.8.0",
5
5
  "license": "MPL-2.0",
6
6
  "description": "Live update for capacitor apps",