Skip to content

Commit

Permalink
Release 4.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
SpertsyanKM authored May 23, 2022
2 parents 1e2fd3f + 047e35e commit ff57433
Show file tree
Hide file tree
Showing 5 changed files with 8 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.3.2
* Fixed Android null-safety compilation issue in Flutter 3+.

## 4.3.1
* Added Apple Search Ads support.
* Method `setUserId` marked as deprecated.
Expand Down
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
group 'com.qonversion.flutter.sdk.qonversion_flutter_sdk'
version '4.3.1'
version '4.3.2'

buildscript {
ext.kotlin_version = '1.3.50'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class QonversionFlutterSdkPlugin : MethodCallHandler, FlutterPlugin, ActivityAwa
@JvmStatic
fun registerWith(registrar: Registrar) {
val instance = QonversionFlutterSdkPlugin()
instance.setup(registrar.messenger(), registrar.activity().application)
instance.setup(registrar.messenger(), registrar.context().applicationContext as Application)
instance.activity = registrar.activity()
}
}
Expand Down
2 changes: 1 addition & 1 deletion lib/src/qonversion.dart
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import 'models/purchase_exception.dart';
import 'qa_provider.dart';

class Qonversion {
static const String _sdkVersion = "4.3.1";
static const String _sdkVersion = "4.3.2";

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

Expand Down
4 changes: 2 additions & 2 deletions 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.3.1
version: 4.3.2
homepage: 'https://qonversion.io'
repository: 'https://github.com/qonversion/flutter-sdk'

Expand Down Expand Up @@ -33,4 +33,4 @@ flutter:

false_secrets:
- /example/android/app/google-services.json
- /example/ios/GoogleService-Info.plist
- /example/ios/GoogleService-Info.plist

0 comments on commit ff57433

Please sign in to comment.