Skip to content

Commit a0e08f4

Browse files
Merge pull request #290 from qonversion/release/7.3.1
Release 7.3.1
2 parents 163cbf1 + 59d0d36 commit a0e08f4

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 7.3.1
2+
* Fixed restore issue
3+
14
## 7.3.0
25
* Updated entitlements fields
36

android/src/main/kotlin/com/qonversion/flutter/sdk/qonversion_flutter_sdk/QonversionPlugin.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ class QonversionPlugin : MethodCallHandler, FlutterPlugin, ActivityAware {
220220
}
221221

222222
private fun restore(result: Result) {
223-
qonversionSandwich.restore(result.toResultListener())
223+
qonversionSandwich.restore(result.toJsonResultListener())
224224
}
225225

226226
private fun offerings(result: Result) {

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 = "7.3.0";
14+
static const String _sdkVersion = "7.3.1";
1515

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

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: 7.3.0
3+
version: 7.3.1
44
homepage: 'https://qonversion.io'
55
repository: 'https://github.com/qonversion/flutter-sdk'
66

0 commit comments

Comments
 (0)