Skip to content

Commit 8f5b4f2

Browse files
authored
Release 9.0.2
Release 9.0.2
2 parents 2fbb6ee + 429d872 commit 8f5b4f2

File tree

6 files changed

+8
-5
lines changed

6 files changed

+8
-5
lines changed

Diff for: CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 9.0.2
2+
* Fixed bug with `checkEntitlements` calls on Android when the callback might not have been called after subscription state changes during the app session.
3+
14
## 9.0.1
25
* Internal SDK version fix.
36

Diff for: android/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,6 @@ android {
5151

5252
dependencies {
5353
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
54-
implementation "io.qonversion.sandwich:sandwich:5.0.2"
54+
implementation "io.qonversion.sandwich:sandwich:5.0.4"
5555
implementation 'com.google.code.gson:gson:2.9.0'
5656
}

Diff for: ios/qonversion_flutter.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Pod::Spec.new do |s|
1616
s.source_files = 'Classes/**/*'
1717
s.dependency 'Flutter'
1818
s.platform = :ios, '9.0'
19-
s.dependency "QonversionSandwich", "5.0.2"
19+
s.dependency "QonversionSandwich", "5.0.4"
2020

2121
# Flutter.framework does not contain a i386 slice. Only x86_64 simulators are supported.
2222
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES', 'VALID_ARCHS[sdk=iphonesimulator*]' => 'x86_64' }

Diff for: lib/src/internal/qonversion_internal.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import 'package:qonversion_flutter/src/internal/utils/string.dart';
1111
import 'constants.dart';
1212

1313
class QonversionInternal implements Qonversion {
14-
static const String _sdkVersion = "9.0.1";
14+
static const String _sdkVersion = "9.0.2";
1515

1616
final MethodChannel _channel = MethodChannel('qonversion_plugin');
1717

Diff for: macos/qonversion_flutter.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Pod::Spec.new do |s|
1616
s.source_files = 'Classes/**/*'
1717
s.dependency 'FlutterMacOS'
1818
s.platform = :osx, '10.12'
19-
s.dependency "QonversionSandwich", "5.0.2"
19+
s.dependency "QonversionSandwich", "5.0.4"
2020

2121
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES' }
2222
s.swift_version = '5.0'

Diff for: pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: qonversion_flutter
22
description: Flutter plugin to implement in-app subscriptions and purchases. Validate user receipts and manage cross-platform access to paid content on your app. Android & iOS.
3-
version: 9.0.1
3+
version: 9.0.2
44
homepage: 'https://qonversion.io'
55
repository: 'https://github.com/qonversion/flutter-sdk'
66

0 commit comments

Comments
 (0)