@capgo/capacitor-data-storage-sqlite 7.2.12 → 7.2.13
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 @@ import com.getcapacitor.annotation.CapacitorPlugin;
|
|
|
11
11
|
@CapacitorPlugin(name = "CapgoCapacitorDataStorageSqlite")
|
|
12
12
|
public class CapgoCapacitorDataStorageSqlitePlugin extends Plugin {
|
|
13
13
|
|
|
14
|
-
private final String
|
|
14
|
+
private final String pluginVersion = "7.2.13";
|
|
15
15
|
|
|
16
16
|
private CapgoCapacitorDataStorageSqlite implementation;
|
|
17
17
|
private RetHandler rHandler = new RetHandler();
|
|
@@ -436,7 +436,7 @@ public class CapgoCapacitorDataStorageSqlitePlugin extends Plugin {
|
|
|
436
436
|
public void getPluginVersion(final PluginCall call) {
|
|
437
437
|
try {
|
|
438
438
|
final JSObject ret = new JSObject();
|
|
439
|
-
ret.put("version", this.
|
|
439
|
+
ret.put("version", this.pluginVersion);
|
|
440
440
|
call.resolve(ret);
|
|
441
441
|
} catch (final Exception e) {
|
|
442
442
|
call.reject("Could not get plugin version", e);
|
|
@@ -5,7 +5,7 @@ import Capacitor
|
|
|
5
5
|
// swiftlint:disable type_body_length
|
|
6
6
|
@objc(CapgoCapacitorDataStorageSqlitePlugin)
|
|
7
7
|
public class CapgoCapacitorDataStorageSqlitePlugin: CAPPlugin, CAPBridgedPlugin {
|
|
8
|
-
private let
|
|
8
|
+
private let pluginVersion: String = "7.2.13"
|
|
9
9
|
public let identifier = "CapgoCapacitorDataStorageSqlitePlugin"
|
|
10
10
|
public let jsName = "CapgoCapacitorDataStorageSqlite"
|
|
11
11
|
public let pluginMethods: [CAPPluginMethod] = [
|
|
@@ -564,7 +564,7 @@ public class CapgoCapacitorDataStorageSqlitePlugin: CAPPlugin, CAPBridgedPlugin
|
|
|
564
564
|
}
|
|
565
565
|
|
|
566
566
|
@objc func getPluginVersion(_ call: CAPPluginCall) {
|
|
567
|
-
call.resolve(["version": self.
|
|
567
|
+
call.resolve(["version": self.pluginVersion])
|
|
568
568
|
}
|
|
569
569
|
|
|
570
570
|
}
|