diff --git a/CHANGELOG.md b/CHANGELOG.md index 89f1302..4b87ec7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +## 4.1.1 +* Fix StrictMode policy violation errors in the Google Play Console pre-launch report. + ## 4.1.0 * New Product fields: storeTitle, storeDescription, price, currencyCode, prettyIntroductoryPrice. * Improved errors details. diff --git a/android/build.gradle b/android/build.gradle index 1941df1..524ac95 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -1,9 +1,9 @@ group 'com.qonversion.flutter.sdk.qonversion_flutter_sdk' -version '4.1.0' +version '4.1.1' buildscript { ext.kotlin_version = '1.3.50' - ext.qonversion_version = '3.1.0' + ext.qonversion_version = '3.1.1' repositories { google() jcenter() diff --git a/lib/src/qonversion.dart b/lib/src/qonversion.dart index 074ab76..63dae95 100644 --- a/lib/src/qonversion.dart +++ b/lib/src/qonversion.dart @@ -16,7 +16,7 @@ import 'models/purchase_exception.dart'; import 'qa_provider.dart'; class Qonversion { - static const String _sdkVersion = "4.1.0"; + static const String _sdkVersion = "4.1.1"; static const MethodChannel _channel = MethodChannel('qonversion_flutter_sdk'); diff --git a/pubspec.yaml b/pubspec.yaml index 0bc99c0..646b85a 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -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.1.0 +version: 4.1.1 homepage: 'https://qonversion.io' repository: 'https://github.com/qonversion/flutter-sdk'