Skip to content

Commit acbdd22

Browse files
authored
Merge pull request #169 from qonversion/release/4.5.2
Release 4.5.2
2 parents bf801af + 462fe56 commit acbdd22

File tree

7 files changed

+9
-5
lines changed

7 files changed

+9
-5
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 4.5.2
2+
* Added a new user property `AppSetId` - a unique user identifier for all the developer's applications. May be used for some integrations.
3+
14
## 4.5.1
25
* Fixed `Could not find offeringId value` error for `purchaseProduct` call on iOS.
36

android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,6 @@ android {
4141

4242
dependencies {
4343
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
44-
implementation 'io.qonversion.sandwich:sandwich:0.1.1'
44+
implementation 'io.qonversion.sandwich:sandwich:0.1.2'
4545
implementation 'com.google.code.gson:gson:2.8.6'
4646
}

ios/qonversion_flutter.podspec

Lines changed: 1 addition & 1 deletion
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', '0.1.1'
19+
s.dependency 'QonversionSandwich', '0.1.2'
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' }

lib/src/models/user_property.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,5 @@ enum QUserProperty {
66
kochavaDeviceId,
77
customUserId,
88
firebaseAppInstanceId,
9+
appSetId, // Android only
910
}

lib/src/qonversion.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import 'models/purchase_exception.dart';
1717
import 'qa_provider.dart';
1818

1919
class Qonversion {
20-
static const String _sdkVersion = "4.5.1";
20+
static const String _sdkVersion = "4.5.2";
2121

2222
static const MethodChannel _channel = MethodChannel('qonversion_flutter_sdk');
2323

macos/qonversion_flutter.podspec

Lines changed: 1 addition & 1 deletion
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', '0.1.1'
19+
s.dependency 'QonversionSandwich', '0.1.2'
2020
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES' }
2121
s.swift_version = '5.0'
2222
s.static_framework = true

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

0 commit comments

Comments
 (0)