@purchasely/cordova-plugin-purchasely 4.4.0 → 5.1.0
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/example/android.sh +1 -1
- package/example/package-lock.json +242 -1052
- package/example/package.json +5 -5
- package/example/www/js/index.js +74 -5
- package/package.json +1 -1
- package/plugin.xml +5 -3
- package/src/android/PLYProductActivity.kt +7 -7
- package/src/android/PurchaselyPlugin.kt +204 -13
- package/src/ios/CDVPurchasely+UserAttributes.h +35 -0
- package/src/ios/CDVPurchasely+UserAttributes.m +144 -0
- package/src/ios/CDVPurchasely.h +9 -1
- package/src/ios/CDVPurchasely.m +163 -4
- package/www/Purchasely.js +49 -17
package/example/android.sh
CHANGED
|
@@ -3,6 +3,6 @@
|
|
|
3
3
|
cordova plugin remove @purchasely/cordova-plugin-purchasely
|
|
4
4
|
cordova plugin remove @purchasely/cordova-plugin-puchasely-google
|
|
5
5
|
cordova platform remove android
|
|
6
|
-
cordova platform add android@
|
|
6
|
+
cordova platform add android@13.0.0
|
|
7
7
|
cordova plugin add ../ --link
|
|
8
8
|
cordova plugin add ../../purchasely-google/ --link
|