Skip to content

Commit

Permalink
update version to 3.2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
x401om committed Dec 13, 2024
1 parent 9229e6f commit 4b73c9a
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 12 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 3.2.4
- [iOS] Added support for Xcode 16.2
- [iOS] Fixed support for Xcode 15.x

# 3.2.3
- AdaptyUI: Internal improvements to paywall rendering
- Fixed an issue where `isActivated()` method returned incorrect value
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class AdaptyFlutterPlugin : FlutterPlugin, ActivityAware, MethodCallHandler {

companion object {
private const val CHANNEL_NAME = "flutter.adapty.com/adapty"
private const val VERSION = "3.2.3"
private const val VERSION = "3.2.4"

fun registerWith(registrar: PluginRegistry.Registrar) {
val instance = AdaptyFlutterPlugin();
Expand Down
6 changes: 3 additions & 3 deletions example/ios/Runner.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@
"$(inherited)",
"$(PROJECT_DIR)/Flutter",
);
MARKETING_VERSION = 3.2.3;
MARKETING_VERSION = 3.2.4;
PRODUCT_BUNDLE_IDENTIFIER = com.adapty.adaptydemoapp;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
Expand Down Expand Up @@ -519,7 +519,7 @@
"$(inherited)",
"$(PROJECT_DIR)/Flutter",
);
MARKETING_VERSION = 3.2.3;
MARKETING_VERSION = 3.2.4;
PRODUCT_BUNDLE_IDENTIFIER = com.adapty.adaptydemoapp;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
Expand Down Expand Up @@ -554,7 +554,7 @@
"$(inherited)",
"$(PROJECT_DIR)/Flutter",
);
MARKETING_VERSION = 3.2.3;
MARKETING_VERSION = 3.2.4;
PRODUCT_BUNDLE_IDENTIFIER = com.adapty.adaptydemoapp;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
Expand Down
2 changes: 1 addition & 1 deletion example/ios/Runner/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>3.2.3</string>
<string>3.2.4</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
2 changes: 1 addition & 1 deletion example/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: adapty_flutter_example
description: Demonstrates how to use the adapty_flutter plugin.
version: 3.2.3
version: 3.2.4
publish_to: none

environment:
Expand Down
8 changes: 4 additions & 4 deletions ios/adapty_flutter.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#
Pod::Spec.new do |s|
s.name = 'adapty_flutter'
s.version = '3.2.3'
s.version = '3.2.4'
s.summary = 'Adapty flutter plugin.'
s.description = <<-DESC
Win back churned subscribers in your iOS app.
Expand All @@ -17,9 +17,9 @@ Adapty helps you track business metrics, and lets you run ad campaigns targeted
s.source_files = 'Classes/**/*'
s.dependency 'Flutter'

s.ios.dependency 'Adapty', '3.2.1'
s.ios.dependency 'AdaptyUI', '3.2.1'
s.ios.dependency 'AdaptyPlugin', '3.2.1'
s.ios.dependency 'Adapty', '3.2.2'
s.ios.dependency 'AdaptyUI', '3.2.2'
s.ios.dependency 'AdaptyPlugin', '3.2.2'

s.platform = :ios, '13.0'

Expand Down
2 changes: 1 addition & 1 deletion lib/src/adapty_version.dart
Original file line number Diff line number Diff line change
@@ -1 +1 @@
const String adaptySDKVersion = '3.2.3';
const String adaptySDKVersion = '3.2.4';
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: adapty_flutter
description: Adapty SDK is an open-source framework that makes implementing in-app subscriptions in Flutter applications fast and easy. It’s 100% open-source and lightweight.
version: 3.2.3
version: 3.2.4
homepage: https://adapty.io/
repository: https://github.com/adaptyteam/AdaptySDK-Flutter
issue_tracker: https://github.com/adaptyteam/AdaptySDK-Flutter/issues
Expand Down

0 comments on commit 4b73c9a

Please sign in to comment.