Skip to content

Commit

Permalink
Merge pull request #13 from qonversion/release/0.1.1
Browse files Browse the repository at this point in the history
Release 0.1.1
  • Loading branch information
SpertsyanKM authored Oct 14, 2024
2 parents ab868a9 + 9058a6b commit c3f801d
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ require 'json'
package = JSON.parse(File.read(File.join(__dir__, 'package.json')))

Pod::Spec.new do |s|
s.name = 'QonversionCapacitor'
s.name = 'QonversionCapacitorPlugin'
s.version = package['version']
s.summary = package['description']
s.license = package['license']
Expand Down
2 changes: 1 addition & 1 deletion example/ios/App/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def capacitor_pods
pod 'CapacitorCordova', :path => '../../node_modules/@capacitor/ios'
pod 'CapacitorCamera', :path => '../../node_modules/@capacitor/camera'
pod 'CapacitorSplashScreen', :path => '../../node_modules/@capacitor/splash-screen'
pod 'QonversionCapacitor', :path => '../../node_modules/qonversion-capacitor'
pod 'QonversionCapacitorPlugin', :path => '../../node_modules/@qonversion/capacitor-plugin'
end

target 'App' do
Expand Down
12 changes: 6 additions & 6 deletions example/ios/App/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ PODS:
- Qonversion (5.12.3):
- Qonversion/Main (= 5.12.3)
- Qonversion/Main (5.12.3)
- QonversionCapacitor (0.0.1):
- QonversionCapacitorPlugin (0.1.0):
- Capacitor
- QonversionSandwich (= 5.1.5)
- QonversionSandwich (5.1.5):
Expand All @@ -20,7 +20,7 @@ DEPENDENCIES:
- "CapacitorCamera (from `../../node_modules/@capacitor/camera`)"
- "CapacitorCordova (from `../../node_modules/@capacitor/ios`)"
- "CapacitorSplashScreen (from `../../node_modules/@capacitor/splash-screen`)"
- QonversionCapacitor (from `../../node_modules/qonversion-capacitor`)
- "QonversionCapacitorPlugin (from `../../node_modules/@qonversion/capacitor-plugin`)"

SPEC REPOS:
trunk:
Expand All @@ -36,18 +36,18 @@ EXTERNAL SOURCES:
:path: "../../node_modules/@capacitor/ios"
CapacitorSplashScreen:
:path: "../../node_modules/@capacitor/splash-screen"
QonversionCapacitor:
:path: "../../node_modules/qonversion-capacitor"
QonversionCapacitorPlugin:
:path: "../../node_modules/@qonversion/capacitor-plugin"

SPEC CHECKSUMS:
Capacitor: 679f9673fdf30597493a6362a5d5bf233d46abc2
CapacitorCamera: ed022171dbf3853e68eec877b4d78995378af6b7
CapacitorCordova: f48c89f96c319101cd2f0ce8a2b7449b5fb8b3dd
CapacitorSplashScreen: 250df9ef8014fac5c7c1fd231f0f8b1d8f0b5624
Qonversion: d1a0c6aeff9ba9772ed5020899c2b13422f6aff1
QonversionCapacitor: 54585ea1bc444184a9bcffbbe2cd4574b809d454
QonversionCapacitorPlugin: 6a5a80259d86bfab3d1ca0bd5ada5be2959f1d23
QonversionSandwich: 427599ed4e5c655a63eba1cf029647e49a12a457

PODFILE CHECKSUM: 3db5691f2f4da3ecec4a7865926b8521ff6ec736
PODFILE CHECKSUM: 238528980101a97d01a6a29581a5e0d56d489a11

COCOAPODS: 1.15.2
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@qonversion/capacitor-plugin",
"version": "0.1.0",
"version": "0.1.1",
"description": "Qonversion provides full in-app purchases infrastructure, so you do not need to build your own server for receipt validation. Implement in-app subscriptions, validate user receipts, check subscription status, and provide access to your app features and content using our StoreKit wrapper and Google Play Billing wrapper.",
"main": "dist/plugin.cjs.js",
"module": "dist/esm/index.js",
Expand All @@ -13,7 +13,7 @@
"ios/Sources",
"ios/Tests",
"Package.swift",
"QonversionCapacitor.podspec"
"QonversionCapacitorPlugin.podspec"
],
"author": {
"name": "Qonversion",
Expand Down
2 changes: 1 addition & 1 deletion src/internal/QonversionInternal.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import {QonversionApi} from '../QonversionApi';
import {QonversionNativePlugin} from '../QonversionNativePlugin';
import {PurchaseOptionsBuilder} from '../dto/PurchaseOptionsBuilder';

const sdkVersion = "0.1.0";
const sdkVersion = "0.1.1";

const entitlementsUpdatedEvent = 'entitlementsUpdatedEvent';
const promoPurchaseEvent = 'shouldPurchasePromoProductEvent';
Expand Down

0 comments on commit c3f801d

Please sign in to comment.