From 6931e8439bc8000d80b6d8b9500dbb9d4c4d53c3 Mon Sep 17 00:00:00 2001 From: Sergei Semko <28645140+justSmK@users.noreply.github.com> Date: Mon, 28 Jul 2025 20:38:11 +0300 Subject: [PATCH 1/5] Update publish-reusable.yml Up delay time and change needs for success message --- .github/workflows/publish-reusable.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/publish-reusable.yml b/.github/workflows/publish-reusable.yml index e706114..e104438 100644 --- a/.github/workflows/publish-reusable.yml +++ b/.github/workflows/publish-reusable.yml @@ -60,8 +60,8 @@ jobs: needs: [platform_interface_publish] runs-on: ubuntu-latest steps: - - name: Delay for 1 minutes - run: sleep 60 + - name: Delay for 7 minutes + run: sleep 420 native_components_publish: needs: [analyze_and_test, platform_interface_publish, waiting-while-platform-interface-publish] @@ -115,8 +115,8 @@ jobs: needs: [native_components_publish] runs-on: ubuntu-latest steps: - - name: Delay for 1 minutes - run: sleep 60 + - name: Delay for 7 minutes + run: sleep 420 plugin_publish: needs: [analyze_and_test, platform_interface_publish, native_components_publish, waiting-while-native_components_publish] @@ -181,7 +181,7 @@ jobs: gh pr merge $pr_number --merge --auto message-to-loop-if-success: - needs: [ merge ] + needs: [plugin_publish] runs-on: ubuntu-latest steps: - name: Send message to LOOP From 030341981821d7ffd7db7cf481645262b808c1b5 Mon Sep 17 00:00:00 2001 From: Sergei Semko <28645140+justSmK@users.noreply.github.com> Date: Mon, 28 Jul 2025 20:55:47 +0300 Subject: [PATCH 2/5] Update publish-reusable.yml Up delay time to 10 minutes --- .github/workflows/publish-reusable.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/publish-reusable.yml b/.github/workflows/publish-reusable.yml index e104438..62570cf 100644 --- a/.github/workflows/publish-reusable.yml +++ b/.github/workflows/publish-reusable.yml @@ -60,8 +60,8 @@ jobs: needs: [platform_interface_publish] runs-on: ubuntu-latest steps: - - name: Delay for 7 minutes - run: sleep 420 + - name: Delay for 10 minutes + run: sleep 600 native_components_publish: needs: [analyze_and_test, platform_interface_publish, waiting-while-platform-interface-publish] @@ -115,8 +115,8 @@ jobs: needs: [native_components_publish] runs-on: ubuntu-latest steps: - - name: Delay for 7 minutes - run: sleep 420 + - name: Delay for 10 minutes + run: sleep 600 plugin_publish: needs: [analyze_and_test, platform_interface_publish, native_components_publish, waiting-while-native_components_publish] From e0743861e906a14e3ba9250e35c8ca3438b2e996 Mon Sep 17 00:00:00 2001 From: Akylbek Utekeshev Date: Thu, 7 Aug 2025 18:05:12 +0500 Subject: [PATCH 3/5] Update Example with new project data Update Example with new project data --- example/flutter_example/.gitignore | 6 ++- .../Info.plist | 8 ++-- ...xNotificationContentExtension.entitlements | 2 +- .../Info.plist | 10 ++-- ...xNotificationServiceExtension.entitlements | 2 +- .../ios/Runner.xcodeproj/project.pbxproj | 48 ++++++++++++------- example/flutter_example/ios/Runner/Info.plist | 12 ++--- .../ios/Runner/Runner.entitlements | 2 +- 8 files changed, 53 insertions(+), 37 deletions(-) diff --git a/example/flutter_example/.gitignore b/example/flutter_example/.gitignore index 3965723..f72845b 100644 --- a/example/flutter_example/.gitignore +++ b/example/flutter_example/.gitignore @@ -43,4 +43,8 @@ app.*.map.json /android/app/release /android/app/google-services.json -/android/app/agconnect-services.json \ No newline at end of file +/android/app/agconnect-services.json + +# iOS +/ios/Pods/ +/ios/Podfile.lock diff --git a/example/flutter_example/ios/MindboxNotificationContentExtension/Info.plist b/example/flutter_example/ios/MindboxNotificationContentExtension/Info.plist index 307dc1a..c8c1830 100644 --- a/example/flutter_example/ios/MindboxNotificationContentExtension/Info.plist +++ b/example/flutter_example/ios/MindboxNotificationContentExtension/Info.plist @@ -4,19 +4,19 @@ NSExtension - NSExtensionPrincipalClass - MindboxNotificationContentExtension.NotificationViewController NSExtensionAttributes - UNNotificationExtensionUserInteractionEnabled - 1 UNNotificationExtensionCategory MindBoxCategoryIdentifier UNNotificationExtensionInitialContentSizeRatio 0.0001 + UNNotificationExtensionUserInteractionEnabled + 1 NSExtensionPointIdentifier com.apple.usernotifications.content-extension + NSExtensionPrincipalClass + MindboxNotificationContentExtension.NotificationViewController diff --git a/example/flutter_example/ios/MindboxNotificationContentExtension/MindboxNotificationContentExtension.entitlements b/example/flutter_example/ios/MindboxNotificationContentExtension/MindboxNotificationContentExtension.entitlements index 3e3fa95..d88122b 100644 --- a/example/flutter_example/ios/MindboxNotificationContentExtension/MindboxNotificationContentExtension.entitlements +++ b/example/flutter_example/ios/MindboxNotificationContentExtension/MindboxNotificationContentExtension.entitlements @@ -4,7 +4,7 @@ com.apple.security.application-groups - group.cloud.Mindbox.cloud.mindbox.flutterExample + group.cloud.Mindbox.mindbox.Flutter.Example diff --git a/example/flutter_example/ios/MindboxNotificationServiceExtension/Info.plist b/example/flutter_example/ios/MindboxNotificationServiceExtension/Info.plist index 8fa4b86..a7e496d 100644 --- a/example/flutter_example/ios/MindboxNotificationServiceExtension/Info.plist +++ b/example/flutter_example/ios/MindboxNotificationServiceExtension/Info.plist @@ -10,10 +10,10 @@ $(PRODUCT_MODULE_NAME).NotificationService UIBackgroundModes - - fetch - processing - remote-notification - + + fetch + processing + remote-notification + diff --git a/example/flutter_example/ios/MindboxNotificationServiceExtension/MindboxNotificationServiceExtension.entitlements b/example/flutter_example/ios/MindboxNotificationServiceExtension/MindboxNotificationServiceExtension.entitlements index 5386174..e9b79a0 100644 --- a/example/flutter_example/ios/MindboxNotificationServiceExtension/MindboxNotificationServiceExtension.entitlements +++ b/example/flutter_example/ios/MindboxNotificationServiceExtension/MindboxNotificationServiceExtension.entitlements @@ -6,7 +6,7 @@ development com.apple.security.application-groups - group.cloud.Mindbox.cloud.mindbox.flutterExample + group.cloud.Mindbox.mindbox.Flutter.Example diff --git a/example/flutter_example/ios/Runner.xcodeproj/project.pbxproj b/example/flutter_example/ios/Runner.xcodeproj/project.pbxproj index 4e553a0..fe218f6 100644 --- a/example/flutter_example/ios/Runner.xcodeproj/project.pbxproj +++ b/example/flutter_example/ios/Runner.xcodeproj/project.pbxproj @@ -705,7 +705,7 @@ CLANG_ENABLE_MODULES = YES; CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements; CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; - DEVELOPMENT_TEAM = N39VVWZXXP; + DEVELOPMENT_TEAM = 622436AMYX; ENABLE_BITCODE = NO; INFOPLIST_FILE = Runner/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 15.0; @@ -713,7 +713,7 @@ "$(inherited)", "@executable_path/Frameworks", ); - PRODUCT_BUNDLE_IDENTIFIER = cloud.mindbox.flutterExample; + PRODUCT_BUNDLE_IDENTIFIER = mindbox.Flutter.Example; PRODUCT_NAME = "$(TARGET_NAME)"; SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; SWIFT_VERSION = 5.0; @@ -888,7 +888,7 @@ CLANG_ENABLE_MODULES = YES; CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements; CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; - DEVELOPMENT_TEAM = N39VVWZXXP; + DEVELOPMENT_TEAM = 622436AMYX; ENABLE_BITCODE = NO; INFOPLIST_FILE = Runner/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 15.0; @@ -896,7 +896,7 @@ "$(inherited)", "@executable_path/Frameworks", ); - PRODUCT_BUNDLE_IDENTIFIER = cloud.mindbox.flutterExample; + PRODUCT_BUNDLE_IDENTIFIER = mindbox.Flutter.Example; PRODUCT_NAME = "$(TARGET_NAME)"; SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; SWIFT_OPTIMIZATION_LEVEL = "-Onone"; @@ -914,7 +914,7 @@ CLANG_ENABLE_MODULES = YES; CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements; CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; - DEVELOPMENT_TEAM = N39VVWZXXP; + DEVELOPMENT_TEAM = 622436AMYX; ENABLE_BITCODE = NO; INFOPLIST_FILE = Runner/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 15.0; @@ -922,7 +922,7 @@ "$(inherited)", "@executable_path/Frameworks", ); - PRODUCT_BUNDLE_IDENTIFIER = cloud.mindbox.flutterExample; + PRODUCT_BUNDLE_IDENTIFIER = mindbox.Flutter.Example; PRODUCT_NAME = "$(TARGET_NAME)"; SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; SWIFT_VERSION = 5.0; @@ -942,9 +942,10 @@ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; CODE_SIGN_ENTITLEMENTS = MindboxNotificationServiceExtension/MindboxNotificationServiceExtension.entitlements; + CODE_SIGN_IDENTITY = "Apple Development"; CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 1; - DEVELOPMENT_TEAM = N39VVWZXXP; + DEVELOPMENT_TEAM = 622436AMYX; ENABLE_USER_SCRIPT_SANDBOXING = YES; FRAMEWORK_SEARCH_PATHS = ( "$(inherited)", @@ -972,8 +973,9 @@ MARKETING_VERSION = 1.0; MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; MTL_FAST_MATH = YES; - PRODUCT_BUNDLE_IDENTIFIER = cloud.mindbox.flutterExample.MindboxNotificationServiceExtension; + PRODUCT_BUNDLE_IDENTIFIER = mindbox.Flutter.Example.ServiceExtension; PRODUCT_NAME = "$(TARGET_NAME)"; + PROVISIONING_PROFILE_SPECIFIER = ""; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "DEBUG $(inherited)"; SWIFT_EMIT_LOC_STRINGS = YES; @@ -996,9 +998,10 @@ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; CODE_SIGN_ENTITLEMENTS = MindboxNotificationServiceExtension/MindboxNotificationServiceExtension.entitlements; + CODE_SIGN_IDENTITY = "Apple Development"; CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 1; - DEVELOPMENT_TEAM = N39VVWZXXP; + DEVELOPMENT_TEAM = 622436AMYX; ENABLE_USER_SCRIPT_SANDBOXING = YES; FRAMEWORK_SEARCH_PATHS = ( "$(inherited)", @@ -1026,8 +1029,9 @@ LOCALIZATION_PREFERS_STRING_CATALOGS = YES; MARKETING_VERSION = 1.0; MTL_FAST_MATH = YES; - PRODUCT_BUNDLE_IDENTIFIER = cloud.mindbox.flutterExample.MindboxNotificationServiceExtension; + PRODUCT_BUNDLE_IDENTIFIER = mindbox.Flutter.Example.ServiceExtension; PRODUCT_NAME = "$(TARGET_NAME)"; + PROVISIONING_PROFILE_SPECIFIER = ""; SKIP_INSTALL = YES; SWIFT_EMIT_LOC_STRINGS = YES; SWIFT_VERSION = 5.0; @@ -1048,9 +1052,10 @@ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; CODE_SIGN_ENTITLEMENTS = MindboxNotificationServiceExtension/MindboxNotificationServiceExtension.entitlements; + CODE_SIGN_IDENTITY = "Apple Development"; CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 1; - DEVELOPMENT_TEAM = N39VVWZXXP; + DEVELOPMENT_TEAM = 622436AMYX; ENABLE_USER_SCRIPT_SANDBOXING = YES; FRAMEWORK_SEARCH_PATHS = ( "$(inherited)", @@ -1071,8 +1076,9 @@ LOCALIZATION_PREFERS_STRING_CATALOGS = YES; MARKETING_VERSION = 1.0; MTL_FAST_MATH = YES; - PRODUCT_BUNDLE_IDENTIFIER = cloud.mindbox.flutterExample.MindboxNotificationServiceExtension; + PRODUCT_BUNDLE_IDENTIFIER = mindbox.Flutter.Example.ServiceExtension; PRODUCT_NAME = "$(TARGET_NAME)"; + PROVISIONING_PROFILE_SPECIFIER = ""; SKIP_INSTALL = YES; SWIFT_EMIT_LOC_STRINGS = YES; SWIFT_VERSION = 5.0; @@ -1092,9 +1098,10 @@ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; CODE_SIGN_ENTITLEMENTS = MindboxNotificationContentExtension/MindboxNotificationContentExtension.entitlements; + CODE_SIGN_IDENTITY = "Apple Development"; CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 1; - DEVELOPMENT_TEAM = N39VVWZXXP; + DEVELOPMENT_TEAM = 622436AMYX; ENABLE_USER_SCRIPT_SANDBOXING = YES; GCC_C_LANGUAGE_STANDARD = gnu17; GENERATE_INFOPLIST_FILE = YES; @@ -1111,8 +1118,9 @@ MARKETING_VERSION = 1.0; MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; MTL_FAST_MATH = YES; - PRODUCT_BUNDLE_IDENTIFIER = cloud.mindbox.flutterExample.MindboxNotificationContentExtension; + PRODUCT_BUNDLE_IDENTIFIER = mindbox.Flutter.Example.ContentExtension; PRODUCT_NAME = "$(TARGET_NAME)"; + PROVISIONING_PROFILE_SPECIFIER = ""; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "DEBUG $(inherited)"; SWIFT_EMIT_LOC_STRINGS = YES; @@ -1133,9 +1141,10 @@ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; CODE_SIGN_ENTITLEMENTS = MindboxNotificationContentExtension/MindboxNotificationContentExtension.entitlements; + CODE_SIGN_IDENTITY = "Apple Development"; CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 1; - DEVELOPMENT_TEAM = N39VVWZXXP; + DEVELOPMENT_TEAM = 622436AMYX; ENABLE_USER_SCRIPT_SANDBOXING = YES; GCC_C_LANGUAGE_STANDARD = gnu17; GENERATE_INFOPLIST_FILE = YES; @@ -1151,8 +1160,9 @@ LOCALIZATION_PREFERS_STRING_CATALOGS = YES; MARKETING_VERSION = 1.0; MTL_FAST_MATH = YES; - PRODUCT_BUNDLE_IDENTIFIER = cloud.mindbox.flutterExample.MindboxNotificationContentExtension; + PRODUCT_BUNDLE_IDENTIFIER = mindbox.Flutter.Example.ContentExtension; PRODUCT_NAME = "$(TARGET_NAME)"; + PROVISIONING_PROFILE_SPECIFIER = ""; SKIP_INSTALL = YES; SWIFT_EMIT_LOC_STRINGS = YES; SWIFT_VERSION = 5.0; @@ -1171,9 +1181,10 @@ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; CODE_SIGN_ENTITLEMENTS = MindboxNotificationContentExtension/MindboxNotificationContentExtension.entitlements; + CODE_SIGN_IDENTITY = "Apple Development"; CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 1; - DEVELOPMENT_TEAM = N39VVWZXXP; + DEVELOPMENT_TEAM = 622436AMYX; ENABLE_USER_SCRIPT_SANDBOXING = YES; GCC_C_LANGUAGE_STANDARD = gnu17; GENERATE_INFOPLIST_FILE = YES; @@ -1189,8 +1200,9 @@ LOCALIZATION_PREFERS_STRING_CATALOGS = YES; MARKETING_VERSION = 1.0; MTL_FAST_MATH = YES; - PRODUCT_BUNDLE_IDENTIFIER = cloud.mindbox.flutterExample.MindboxNotificationContentExtension; + PRODUCT_BUNDLE_IDENTIFIER = mindbox.Flutter.Example.ContentExtension; PRODUCT_NAME = "$(TARGET_NAME)"; + PROVISIONING_PROFILE_SPECIFIER = ""; SKIP_INSTALL = YES; SWIFT_EMIT_LOC_STRINGS = YES; SWIFT_VERSION = 5.0; diff --git a/example/flutter_example/ios/Runner/Info.plist b/example/flutter_example/ios/Runner/Info.plist index 7131f27..d51f971 100644 --- a/example/flutter_example/ios/Runner/Info.plist +++ b/example/flutter_example/ios/Runner/Info.plist @@ -2,6 +2,12 @@ + BGTaskSchedulerPermittedIdentifiers + + cloud.Mindbox.$(PRODUCT_BUNDLE_IDENTIFIER).GDAppRefresh + cloud.Mindbox.$(PRODUCT_BUNDLE_IDENTIFIER).GDAppProcessing + cloud.Mindbox.$(PRODUCT_BUNDLE_IDENTIFIER).DBCleanAppProcessing + CADisableMinimumFrameDurationOnPhone CFBundleDevelopmentRegion @@ -34,12 +40,6 @@ processing remote-notification - BGTaskSchedulerPermittedIdentifiers - - cloud.Mindbox.$(PRODUCT_BUNDLE_IDENTIFIER).GDAppRefresh - cloud.Mindbox.$(PRODUCT_BUNDLE_IDENTIFIER).GDAppProcessing - cloud.Mindbox.$(PRODUCT_BUNDLE_IDENTIFIER).DBCleanAppProcessing - UILaunchStoryboardName LaunchScreen UIMainStoryboardFile diff --git a/example/flutter_example/ios/Runner/Runner.entitlements b/example/flutter_example/ios/Runner/Runner.entitlements index 5386174..e9b79a0 100644 --- a/example/flutter_example/ios/Runner/Runner.entitlements +++ b/example/flutter_example/ios/Runner/Runner.entitlements @@ -6,7 +6,7 @@ development com.apple.security.application-groups - group.cloud.Mindbox.cloud.mindbox.flutterExample + group.cloud.Mindbox.mindbox.Flutter.Example From cca4897887f2e1ea3929980ee226af6acb1772ff Mon Sep 17 00:00:00 2001 From: Akylbek Utekeshev Date: Mon, 11 Aug 2025 20:01:21 +0500 Subject: [PATCH 4/5] Merge pull request #167 from mindbox-cloud/mission/inapp-display-control Mission/inapp display control --- mindbox/CHANGELOG.md | 5 +++++ mindbox/pubspec.yaml | 8 ++++---- mindbox_android/CHANGELOG.md | 4 ++++ mindbox_android/android/build.gradle | 2 +- mindbox_android/pubspec.yaml | 4 ++-- mindbox_ios/CHANGELOG.md | 4 ++++ mindbox_ios/ios/mindbox_ios.podspec | 6 +++--- mindbox_ios/pubspec.yaml | 4 ++-- mindbox_platform_interface/CHANGELOG.md | 5 +++++ mindbox_platform_interface/pubspec.yaml | 2 +- 10 files changed, 31 insertions(+), 13 deletions(-) diff --git a/mindbox/CHANGELOG.md b/mindbox/CHANGELOG.md index 81b0ce9..06744dc 100644 --- a/mindbox/CHANGELOG.md +++ b/mindbox/CHANGELOG.md @@ -1,3 +1,8 @@ +## 2.14.0-rc + +* Upgrade native Android SDK dependency to v2.14.0-rc. +* Upgrade native iOS SDK dependency to v2.14.0-rc. + ## 2.13.4 * Upgrade native Android SDK dependency to v2.13.4. diff --git a/mindbox/pubspec.yaml b/mindbox/pubspec.yaml index 390d63f..cd04d2c 100644 --- a/mindbox/pubspec.yaml +++ b/mindbox/pubspec.yaml @@ -1,6 +1,6 @@ name: mindbox description: Flutter Mindbox SDK. Plugin wrapper over of Mindbox iOS/Android SDK. -version: 2.13.4 +version: 2.14.0-rc homepage: https://mindbox.cloud/ repository: https://github.com/mindbox-cloud/flutter-sdk/tree/master/mindbox documentation: https://developers.mindbox.ru/docs/flutter-sdk-integration @@ -20,9 +20,9 @@ flutter: dependencies: flutter: sdk: flutter - mindbox_android: ^2.13.4 - mindbox_ios: ^2.13.4 - mindbox_platform_interface: ^2.13.4 + mindbox_android: ^2.14.0-rc + mindbox_ios: ^2.14.0-rc + mindbox_platform_interface: ^2.14.0-rc dev_dependencies: flutter_test: diff --git a/mindbox_android/CHANGELOG.md b/mindbox_android/CHANGELOG.md index 4fd70a3..1b333c1 100644 --- a/mindbox_android/CHANGELOG.md +++ b/mindbox_android/CHANGELOG.md @@ -1,3 +1,7 @@ +## 2.14.0-rc + +* Upgrade native Android SDK dependency to v2.14.0-rc. + ## 2.13.4 * Upgrade native Android SDK dependency to v2.13.4. diff --git a/mindbox_android/android/build.gradle b/mindbox_android/android/build.gradle index 2617a13..a099501 100644 --- a/mindbox_android/android/build.gradle +++ b/mindbox_android/android/build.gradle @@ -50,5 +50,5 @@ android { dependencies { implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" - api 'cloud.mindbox:mobile-sdk:2.13.4' + api 'cloud.mindbox:mobile-sdk:2.14.0-rc' } diff --git a/mindbox_android/pubspec.yaml b/mindbox_android/pubspec.yaml index c9bfb4b..0e636a0 100644 --- a/mindbox_android/pubspec.yaml +++ b/mindbox_android/pubspec.yaml @@ -1,6 +1,6 @@ name: mindbox_android description: The implementation of 'mindbox' plugin for the Android platform. -version: 2.13.4 +version: 2.14.0-rc homepage: https://mindbox.cloud/ repository: https://github.com/mindbox-cloud/flutter-sdk/tree/master/mindbox_android @@ -19,7 +19,7 @@ flutter: dependencies: flutter: sdk: flutter - mindbox_platform_interface: ^2.13.4 + mindbox_platform_interface: ^2.14.0-rc dev_dependencies: flutter_test: diff --git a/mindbox_ios/CHANGELOG.md b/mindbox_ios/CHANGELOG.md index 6fabae6..1d79a65 100644 --- a/mindbox_ios/CHANGELOG.md +++ b/mindbox_ios/CHANGELOG.md @@ -1,3 +1,7 @@ +## 2.14.0-rc + +* Upgrade native iOS SDK dependency to v2.14.0-rc. + ## 2.13.4 * Upgrade native iOS SDK dependency to v2.13.4. diff --git a/mindbox_ios/ios/mindbox_ios.podspec b/mindbox_ios/ios/mindbox_ios.podspec index 6ad908e..57e865c 100644 --- a/mindbox_ios/ios/mindbox_ios.podspec +++ b/mindbox_ios/ios/mindbox_ios.podspec @@ -4,7 +4,7 @@ # Pod::Spec.new do |s| s.name = 'mindbox_ios' - s.version = '2.13.4' + s.version = '2.14.0-rc' s.summary = 'Mindbox Flutter SDK' s.description = <<-DESC The implementation of 'mindbox' plugin for the iOS platform @@ -15,8 +15,8 @@ The implementation of 'mindbox' plugin for the iOS platform s.source = { :path => '.' } s.source_files = 'Classes/**/*' s.dependency 'Flutter' - s.dependency 'Mindbox', '2.13.4' - s.dependency 'MindboxNotifications', '2.13.4' + s.dependency 'Mindbox', '2.14.0-rc' + s.dependency 'MindboxNotifications', '2.14.0-rc' s.platform = :ios, '12.0' # Flutter.framework does not contain a i386 slice. diff --git a/mindbox_ios/pubspec.yaml b/mindbox_ios/pubspec.yaml index 348f4bf..fb51e26 100644 --- a/mindbox_ios/pubspec.yaml +++ b/mindbox_ios/pubspec.yaml @@ -1,6 +1,6 @@ name: mindbox_ios description: The implementation of 'mindbox' plugin for the iOS platform. -version: 2.13.4 +version: 2.14.0-rc homepage: https://mindbox.cloud/ repository: https://github.com/mindbox-cloud/flutter-sdk/tree/master/mindbox_ios @@ -18,7 +18,7 @@ flutter: dependencies: flutter: sdk: flutter - mindbox_platform_interface: ^2.13.4 + mindbox_platform_interface: ^2.14.0-rc dev_dependencies: flutter_test: diff --git a/mindbox_platform_interface/CHANGELOG.md b/mindbox_platform_interface/CHANGELOG.md index 2303b5a..6fbf74b 100644 --- a/mindbox_platform_interface/CHANGELOG.md +++ b/mindbox_platform_interface/CHANGELOG.md @@ -1,3 +1,8 @@ +## 2.14.0-rc + +* Upgrade native Android SDK dependency to v2.14.0-rc. +* Upgrade native iOS SDK dependency to v2.14.0-rc. + ## 2.13.4 * Upgrade native Android SDK dependency to v2.13.4. diff --git a/mindbox_platform_interface/pubspec.yaml b/mindbox_platform_interface/pubspec.yaml index 20ec0c8..1abc32f 100644 --- a/mindbox_platform_interface/pubspec.yaml +++ b/mindbox_platform_interface/pubspec.yaml @@ -1,6 +1,6 @@ name: mindbox_platform_interface description: Mindbox platform interface. -version: 2.13.4 +version: 2.14.0-rc homepage: https://mindbox.cloud/ repository: https://github.com/mindbox-cloud/flutter-sdk/tree/master/mindbox_platform_interface From 0f8b180a1a53fe51ac41e56f9945c13840900523 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 11 Aug 2025 15:02:45 +0000 Subject: [PATCH 5/5] Bump SDK versions: Flutter=2.14.0, Android=2.14.0, iOS=2.14.0 --- mindbox/CHANGELOG.md | 5 +++++ mindbox/pubspec.yaml | 8 ++++---- mindbox_android/CHANGELOG.md | 4 ++++ mindbox_android/android/build.gradle | 2 +- mindbox_android/pubspec.yaml | 4 ++-- mindbox_ios/CHANGELOG.md | 4 ++++ mindbox_ios/ios/mindbox_ios.podspec | 6 +++--- mindbox_ios/pubspec.yaml | 4 ++-- mindbox_platform_interface/CHANGELOG.md | 5 +++++ mindbox_platform_interface/pubspec.yaml | 2 +- 10 files changed, 31 insertions(+), 13 deletions(-) diff --git a/mindbox/CHANGELOG.md b/mindbox/CHANGELOG.md index 06744dc..89eca81 100644 --- a/mindbox/CHANGELOG.md +++ b/mindbox/CHANGELOG.md @@ -1,3 +1,8 @@ +## 2.14.0 + +* Upgrade native Android SDK dependency to v2.14.0. +* Upgrade native iOS SDK dependency to v2.14.0. + ## 2.14.0-rc * Upgrade native Android SDK dependency to v2.14.0-rc. diff --git a/mindbox/pubspec.yaml b/mindbox/pubspec.yaml index cd04d2c..c856b72 100644 --- a/mindbox/pubspec.yaml +++ b/mindbox/pubspec.yaml @@ -1,6 +1,6 @@ name: mindbox description: Flutter Mindbox SDK. Plugin wrapper over of Mindbox iOS/Android SDK. -version: 2.14.0-rc +version: 2.14.0 homepage: https://mindbox.cloud/ repository: https://github.com/mindbox-cloud/flutter-sdk/tree/master/mindbox documentation: https://developers.mindbox.ru/docs/flutter-sdk-integration @@ -20,9 +20,9 @@ flutter: dependencies: flutter: sdk: flutter - mindbox_android: ^2.14.0-rc - mindbox_ios: ^2.14.0-rc - mindbox_platform_interface: ^2.14.0-rc + mindbox_android: ^2.14.0 + mindbox_ios: ^2.14.0 + mindbox_platform_interface: ^2.14.0 dev_dependencies: flutter_test: diff --git a/mindbox_android/CHANGELOG.md b/mindbox_android/CHANGELOG.md index 1b333c1..62c3a03 100644 --- a/mindbox_android/CHANGELOG.md +++ b/mindbox_android/CHANGELOG.md @@ -1,3 +1,7 @@ +## 2.14.0 + +* Upgrade native Android SDK dependency to v2.14.0. + ## 2.14.0-rc * Upgrade native Android SDK dependency to v2.14.0-rc. diff --git a/mindbox_android/android/build.gradle b/mindbox_android/android/build.gradle index a099501..695c8e1 100644 --- a/mindbox_android/android/build.gradle +++ b/mindbox_android/android/build.gradle @@ -50,5 +50,5 @@ android { dependencies { implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" - api 'cloud.mindbox:mobile-sdk:2.14.0-rc' + api 'cloud.mindbox:mobile-sdk:2.14.0' } diff --git a/mindbox_android/pubspec.yaml b/mindbox_android/pubspec.yaml index 0e636a0..6069449 100644 --- a/mindbox_android/pubspec.yaml +++ b/mindbox_android/pubspec.yaml @@ -1,6 +1,6 @@ name: mindbox_android description: The implementation of 'mindbox' plugin for the Android platform. -version: 2.14.0-rc +version: 2.14.0 homepage: https://mindbox.cloud/ repository: https://github.com/mindbox-cloud/flutter-sdk/tree/master/mindbox_android @@ -19,7 +19,7 @@ flutter: dependencies: flutter: sdk: flutter - mindbox_platform_interface: ^2.14.0-rc + mindbox_platform_interface: ^2.14.0 dev_dependencies: flutter_test: diff --git a/mindbox_ios/CHANGELOG.md b/mindbox_ios/CHANGELOG.md index 1d79a65..aec1bbf 100644 --- a/mindbox_ios/CHANGELOG.md +++ b/mindbox_ios/CHANGELOG.md @@ -1,3 +1,7 @@ +## 2.14.0 + +* Upgrade native iOS SDK dependency to v2.14.0. + ## 2.14.0-rc * Upgrade native iOS SDK dependency to v2.14.0-rc. diff --git a/mindbox_ios/ios/mindbox_ios.podspec b/mindbox_ios/ios/mindbox_ios.podspec index 57e865c..4ad97a7 100644 --- a/mindbox_ios/ios/mindbox_ios.podspec +++ b/mindbox_ios/ios/mindbox_ios.podspec @@ -4,7 +4,7 @@ # Pod::Spec.new do |s| s.name = 'mindbox_ios' - s.version = '2.14.0-rc' + s.version = '2.14.0' s.summary = 'Mindbox Flutter SDK' s.description = <<-DESC The implementation of 'mindbox' plugin for the iOS platform @@ -15,8 +15,8 @@ The implementation of 'mindbox' plugin for the iOS platform s.source = { :path => '.' } s.source_files = 'Classes/**/*' s.dependency 'Flutter' - s.dependency 'Mindbox', '2.14.0-rc' - s.dependency 'MindboxNotifications', '2.14.0-rc' + s.dependency 'Mindbox', '2.14.0' + s.dependency 'MindboxNotifications', '2.14.0' s.platform = :ios, '12.0' # Flutter.framework does not contain a i386 slice. diff --git a/mindbox_ios/pubspec.yaml b/mindbox_ios/pubspec.yaml index fb51e26..f2f699c 100644 --- a/mindbox_ios/pubspec.yaml +++ b/mindbox_ios/pubspec.yaml @@ -1,6 +1,6 @@ name: mindbox_ios description: The implementation of 'mindbox' plugin for the iOS platform. -version: 2.14.0-rc +version: 2.14.0 homepage: https://mindbox.cloud/ repository: https://github.com/mindbox-cloud/flutter-sdk/tree/master/mindbox_ios @@ -18,7 +18,7 @@ flutter: dependencies: flutter: sdk: flutter - mindbox_platform_interface: ^2.14.0-rc + mindbox_platform_interface: ^2.14.0 dev_dependencies: flutter_test: diff --git a/mindbox_platform_interface/CHANGELOG.md b/mindbox_platform_interface/CHANGELOG.md index 6fbf74b..afc4142 100644 --- a/mindbox_platform_interface/CHANGELOG.md +++ b/mindbox_platform_interface/CHANGELOG.md @@ -1,3 +1,8 @@ +## 2.14.0 + +* Upgrade native Android SDK dependency to v2.14.0. +* Upgrade native iOS SDK dependency to v2.14.0. + ## 2.14.0-rc * Upgrade native Android SDK dependency to v2.14.0-rc. diff --git a/mindbox_platform_interface/pubspec.yaml b/mindbox_platform_interface/pubspec.yaml index 1abc32f..29f0171 100644 --- a/mindbox_platform_interface/pubspec.yaml +++ b/mindbox_platform_interface/pubspec.yaml @@ -1,6 +1,6 @@ name: mindbox_platform_interface description: Mindbox platform interface. -version: 2.14.0-rc +version: 2.14.0 homepage: https://mindbox.cloud/ repository: https://github.com/mindbox-cloud/flutter-sdk/tree/master/mindbox_platform_interface