@purchasely/cordova-plugin-purchasely 6.1.0 → 6.1.1
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.
- package/Package.swift +1 -1
- package/package.json +7 -2
- package/plugin.xml +3 -3
- package/www/Purchasely.js +1 -1
package/Package.swift
CHANGED
|
@@ -56,7 +56,7 @@ let package = Package(
|
|
|
56
56
|
// documents another. That makes the linked SDK depend on install time and lets
|
|
57
57
|
// the two integration paths drift apart. Bump this with the podspec, in the
|
|
58
58
|
// same commit, and VERSIONS.md with it.
|
|
59
|
-
.package(url: "https://github.com/Purchasely/Purchasely-iOS.git", exact: "6.1.
|
|
59
|
+
.package(url: "https://github.com/Purchasely/Purchasely-iOS.git", exact: "6.1.2")
|
|
60
60
|
],
|
|
61
61
|
targets: [
|
|
62
62
|
.target(
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@purchasely/cordova-plugin-purchasely",
|
|
3
|
-
"version": "6.1.
|
|
3
|
+
"version": "6.1.1",
|
|
4
4
|
"description": "Purchasely is a solution to ease the integration and boost your In-App Purchases & Subscriptions on the App Store, Google Play Store, Amazon Appstore and Huawei App Gallery.",
|
|
5
5
|
"cordova": {
|
|
6
6
|
"id": "@purchasely/cordova-plugin-purchasely",
|
|
@@ -65,6 +65,11 @@
|
|
|
65
65
|
},
|
|
66
66
|
"homepage": "https://github.com/Purchasely/Purchasely-Cordova#readme",
|
|
67
67
|
"overrides": {
|
|
68
|
-
"js-yaml@3": "^3.15.
|
|
68
|
+
"js-yaml@3": "^3.15.2",
|
|
69
|
+
"browserslist": "^4.28.7"
|
|
70
|
+
},
|
|
71
|
+
"resolutions": {
|
|
72
|
+
"js-yaml": "^3.15.2",
|
|
73
|
+
"browserslist": "^4.28.7"
|
|
69
74
|
}
|
|
70
75
|
}
|
package/plugin.xml
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<?xml version='1.0' encoding='utf-8'?>
|
|
2
|
-
<plugin id="@purchasely/cordova-plugin-purchasely" version="6.1.
|
|
2
|
+
<plugin id="@purchasely/cordova-plugin-purchasely" version="6.1.1" xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android">
|
|
3
3
|
<name>Purchasely</name>
|
|
4
4
|
<js-module name="Purchasely" src="www/Purchasely.js">
|
|
5
5
|
<clobbers target="Purchasely" />
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
<source url="https://github.com/CocoaPods/Specs.git"/>
|
|
39
39
|
</config>
|
|
40
40
|
<pods use-frameworks="true">
|
|
41
|
-
<pod name="Purchasely" spec="6.1.
|
|
41
|
+
<pod name="Purchasely" spec="6.1.2" nospm="true"/>
|
|
42
42
|
</pods>
|
|
43
43
|
</podspec>
|
|
44
44
|
</platform>
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
<preference name="GradlePluginKotlinCodeStyle" value="official" />
|
|
54
54
|
</config-file>
|
|
55
55
|
<framework src="src/android/build-extras.gradle" custom="true" type="gradleReference" />
|
|
56
|
-
<framework src="io.purchasely:core:6.1.
|
|
56
|
+
<framework src="io.purchasely:core:6.1.1" />
|
|
57
57
|
<source-file src="src/android/PurchaselyPlugin.kt" target-dir="java/cordova/plugin/purchasely" />
|
|
58
58
|
</platform>
|
|
59
59
|
</plugin>
|
package/www/Purchasely.js
CHANGED
|
@@ -77,7 +77,7 @@ exports.start = function (options, success, error) {
|
|
|
77
77
|
var opts = options || {};
|
|
78
78
|
var cordovaSdkVersion = cordova.define.moduleMap['cordova/plugin_list'].exports['metadata']['cordova-plugin-purchasely']
|
|
79
79
|
if(!cordovaSdkVersion) {
|
|
80
|
-
cordovaSdkVersion = "6.1.
|
|
80
|
+
cordovaSdkVersion = "6.1.1";
|
|
81
81
|
}
|
|
82
82
|
opts.sdkVersion = cordovaSdkVersion;
|
|
83
83
|
exec(success, error, 'Purchasely', 'start', [opts]);
|