Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 7.5.0 #300

Merged
merged 2 commits into from
Jun 4, 2024
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 @@ -65,7 +65,7 @@ repositories {
dependencies {
//noinspection GradleDynamicVersion
implementation 'com.facebook.react:react-native:+' // From node_modules
implementation "io.qonversion.sandwich:sandwich:4.4.1"
implementation "io.qonversion.sandwich:sandwich:4.5.0"
}

afterEvaluate { project ->
Expand Down
15 changes: 15 additions & 0 deletions fastlane/report.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,20 @@




<testcase classname="fastlane.lanes" name="0: last_git_tag" time="0.151495">

</testcase>


<testcase classname="fastlane.lanes" name="1: add_git_tag" time="0.061161">

</testcase>


<testcase classname="fastlane.lanes" name="2: push_git_tags" time="2.56906">

</testcase>

</testsuite>
</testsuites>
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "react-native-qonversion",
"title": "React Native Qonversion",
"version": "7.4.0",
"version": "7.5.0",
"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": "build/index.js",
"types": "build/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion react-native-qonversion.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@ Pod::Spec.new do |s|
s.requires_arc = true

s.dependency "React"
s.dependency "QonversionSandwich", "4.4.1"
s.dependency "QonversionSandwich", "4.5.0"
end
2 changes: 1 addition & 1 deletion src/internal/QonversionInternal.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import {RemoteConfigList} from '../index';

const {RNQonversion} = NativeModules;

const sdkVersion = "7.4.0";
const sdkVersion = "7.5.0";

const EVENT_ENTITLEMENTS_UPDATED = "entitlements_updated";
const EVENT_PROMO_PURCHASE_RECEIVED = "promo_purchase_received";
Expand Down
Loading