Skip to content

Commit

Permalink
Merge pull request #169 from qonversion/release/4.5.2
Browse files Browse the repository at this point in the history
Release 4.5.2
  • Loading branch information
SpertsyanKM authored Sep 15, 2022
2 parents bf801af + 462fe56 commit acbdd22
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 5 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 4.5.2
* Added a new user property `AppSetId` - a unique user identifier for all the developer's applications. May be used for some integrations.

## 4.5.1
* Fixed `Could not find offeringId value` error for `purchaseProduct` call on iOS.

Expand Down
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,6 @@ android {

dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation 'io.qonversion.sandwich:sandwich:0.1.1'
implementation 'io.qonversion.sandwich:sandwich:0.1.2'
implementation 'com.google.code.gson:gson:2.8.6'
}
2 changes: 1 addition & 1 deletion ios/qonversion_flutter.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Pod::Spec.new do |s|
s.source_files = 'Classes/**/*'
s.dependency 'Flutter'
s.platform = :ios, '9.0'
s.dependency 'QonversionSandwich', '0.1.1'
s.dependency 'QonversionSandwich', '0.1.2'

# Flutter.framework does not contain a i386 slice. Only x86_64 simulators are supported.
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES', 'VALID_ARCHS[sdk=iphonesimulator*]' => 'x86_64' }
Expand Down
1 change: 1 addition & 0 deletions lib/src/models/user_property.dart
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,5 @@ enum QUserProperty {
kochavaDeviceId,
customUserId,
firebaseAppInstanceId,
appSetId, // Android only
}
2 changes: 1 addition & 1 deletion lib/src/qonversion.dart
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import 'models/purchase_exception.dart';
import 'qa_provider.dart';

class Qonversion {
static const String _sdkVersion = "4.5.1";
static const String _sdkVersion = "4.5.2";

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

Expand Down
2 changes: 1 addition & 1 deletion macos/qonversion_flutter.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Pod::Spec.new do |s|
s.source_files = 'Classes/**/*'
s.dependency 'FlutterMacOS'
s.platform = :osx, '10.12'
s.dependency 'QonversionSandwich', '0.1.1'
s.dependency 'QonversionSandwich', '0.1.2'
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES' }
s.swift_version = '5.0'
s.static_framework = true
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: qonversion_flutter
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.
version: 4.5.1
version: 4.5.2
homepage: 'https://qonversion.io'
repository: 'https://github.com/qonversion/flutter-sdk'

Expand Down

0 comments on commit acbdd22

Please sign in to comment.