Skip to content

Commit 78426f9

Browse files
authored
Merge pull request #408 from qonversion/release/10.1.1
2 parents c19ff27 + 528e47d commit 78426f9

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ def kotlin_version = getExtOrDefault("kotlinVersion")
8080
dependencies {
8181
implementation "com.facebook.react:react-android"
8282
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
83-
implementation "io.qonversion:sandwich:7.3.0"
83+
implementation "io.qonversion:sandwich:7.3.1"
8484
}
8585

8686
if (isNewArchitectureEnabled()) {

fastlane/Fastfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@ end
1616

1717
def upgrade_sandwich_android(new_version)
1818
path = "../android/build.gradle"
19-
common_part = "implementation \"io.qonversion.sandwich:sandwich:"
19+
common_part = "implementation \"io.qonversion:sandwich:"
2020
regex = /#{common_part}.*"/
2121
result_value = "#{common_part}#{new_version}\""
2222

2323
update_file(path, regex, result_value)
2424
end
2525

2626
def upgrade_sandwich_ios(new_version)
27-
path = "../react-native-qonversion.podspec"
27+
path = "../qonversion-react-native-sdk.podspec"
2828
common_part = "s.dependency \"QonversionSandwich\", \""
2929
regex = /#{common_part}.*"/
3030
result_value = "#{common_part}#{new_version}\""

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@qonversion/react-native-sdk",
33
"title": "React Native Qonversion",
4-
"version": "10.1.0",
4+
"version": "10.1.1",
55
"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.",
66
"main": "./lib/module/index.js",
77
"types": "./lib/typescript/src/index.d.ts",

qonversion-react-native-sdk.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ Pod::Spec.new do |s|
1616
s.source_files = "ios/**/*.{h,m,mm,cpp,swift}"
1717
s.private_header_files = "ios/**/*.h"
1818

19-
s.dependency "QonversionSandwich", "7.3.0"
19+
s.dependency "QonversionSandwich", "7.3.1"
2020
install_modules_dependencies(s)
2121
end

src/internal/QonversionInternal.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import PromotionalOffer from '../dto/PromotionalOffer';
2424
import RNQonversion from './specs/NativeQonversionModule';
2525
import type { QPromoOfferDetails } from './specs/NativeQonversionModule';
2626

27-
export const sdkVersion = "10.1.0";
27+
export const sdkVersion = "10.1.1";
2828
export const sdkSource = "rn";
2929

3030
export default class QonversionInternal implements QonversionApi {

0 commit comments

Comments
 (0)