Skip to content

Commit 1f9d312

Browse files
authored
Release 5.3.1
Release 5.3.1
2 parents 652ff92 + 03b253a commit 1f9d312

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 5.3.1
2+
* Fixed `collectAppleSearchAdsAttribution` call bug (`NoNecessaryDataError, Could not find necessary arguments`).
3+
14
## 5.3.0
25
* Added function to sync the user's historical data.
36

ios/Classes/SwiftQonversionPlugin.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,9 @@ public class SwiftQonversionPlugin: NSObject, FlutterPlugin {
7575
case "presentCodeRedemptionSheet":
7676
return presentCodeRedemptionSheet(result)
7777

78+
case "collectAppleSearchAdsAttribution":
79+
return collectAppleSearchAdsAttribution(result)
80+
7881
case "automationsSubscribe":
7982
automationsPlugin?.subscribe()
8083
return result(nil)
@@ -119,9 +122,6 @@ public class SwiftQonversionPlugin: NSObject, FlutterPlugin {
119122

120123
case "identify":
121124
return identify(args["userId"] as? String, result)
122-
123-
case "collectAppleSearchAdsAttribution":
124-
return collectAppleSearchAdsAttribution(result)
125125

126126
case "automationsSetNotificationsToken":
127127
automationsPlugin?.setNotificationsToken(args["notificationsToken"] as? String, result)

lib/src/internal/qonversion_internal.dart

Lines changed: 1 addition & 1 deletion
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 = "5.3.0";
14+
static const String _sdkVersion = "5.3.1";
1515

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

pubspec.yaml

Lines changed: 1 addition & 1 deletion
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: 5.3.0
3+
version: 5.3.1
44
homepage: 'https://qonversion.io'
55
repository: 'https://github.com/qonversion/flutter-sdk'
66

0 commit comments

Comments
 (0)