Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ def kotlin_version = getExtOrDefault("kotlinVersion")
dependencies {
implementation "com.facebook.react:react-android"
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
implementation "io.qonversion:sandwich:7.3.0"
implementation "io.qonversion:sandwich:7.3.1"
}

if (isNewArchitectureEnabled()) {
Expand Down
4 changes: 2 additions & 2 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ end

def upgrade_sandwich_android(new_version)
path = "../android/build.gradle"
common_part = "implementation \"io.qonversion.sandwich:sandwich:"
common_part = "implementation \"io.qonversion:sandwich:"
regex = /#{common_part}.*"/
result_value = "#{common_part}#{new_version}\""

update_file(path, regex, result_value)
end

def upgrade_sandwich_ios(new_version)
path = "../react-native-qonversion.podspec"
path = "../qonversion-react-native-sdk.podspec"
common_part = "s.dependency \"QonversionSandwich\", \""
regex = /#{common_part}.*"/
result_value = "#{common_part}#{new_version}\""
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@qonversion/react-native-sdk",
"title": "React Native Qonversion",
"version": "10.1.0",
"version": "10.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": "./lib/module/index.js",
"types": "./lib/typescript/src/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion qonversion-react-native-sdk.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ Pod::Spec.new do |s|
s.source_files = "ios/**/*.{h,m,mm,cpp,swift}"
s.private_header_files = "ios/**/*.h"

s.dependency "QonversionSandwich", "7.3.0"
s.dependency "QonversionSandwich", "7.3.1"
install_modules_dependencies(s)
end
2 changes: 1 addition & 1 deletion src/internal/QonversionInternal.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import PromotionalOffer from '../dto/PromotionalOffer';
import RNQonversion from './specs/NativeQonversionModule';
import type { QPromoOfferDetails } from './specs/NativeQonversionModule';

export const sdkVersion = "10.1.0";
export const sdkVersion = "10.1.1";
export const sdkSource = "rn";

export default class QonversionInternal implements QonversionApi {
Expand Down
Loading