From fb8c495734d1e3b915cf695790f7f10174b1ea0d Mon Sep 17 00:00:00 2001 From: crow Date: Mon, 5 Aug 2024 17:53:30 -0700 Subject: [PATCH] Update to latest ios and android sdks and proxy --- CHANGELOG.md | 8 ++++++++ android/build.gradle | 4 ++-- .../kotlin/com/airship/flutter/AirshipPluginVersion.kt | 2 +- ios/Classes/AirshipPluginVersion.swift | 2 +- ios/airship_flutter.podspec | 4 ++-- pubspec.yaml | 2 +- 6 files changed, 15 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6fd6ebf6..57fb1f96 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Flutter Plugin Changelog +## Version 7.7.0 - Aug 7, 2024 +Minor release that updates the Android SDK to 18.1.4 and the iOS SDK to 18.7.1. + +### Changes +- Updated Android SDK to 18.1.1 +- Updated iOS SDK to 18.7.1 +- Updated airship-mobile-framework-proxy to 7.1.0 + ## Version 7.6.0 - July 11, 2024 Minor release that updates the Android SDK to 18.1.1 and the iOS SDK to 18.5.0. diff --git a/android/build.gradle b/android/build.gradle index 64761ddf..8032e1dd 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -7,8 +7,8 @@ buildscript { ext.kotlin_version = '1.9.0' ext.coroutine_version = '1.5.2' ext.datastore_preferences_version = '1.1.1' - ext.airship_version = '18.1.1' - ext.airship_framework_proxy_version = '7.0.0' + ext.airship_version = '18.1.4' + ext.airship_framework_proxy_version = '7.1.0' repositories { google() diff --git a/android/src/main/kotlin/com/airship/flutter/AirshipPluginVersion.kt b/android/src/main/kotlin/com/airship/flutter/AirshipPluginVersion.kt index 25bd4ff7..cbe127da 100644 --- a/android/src/main/kotlin/com/airship/flutter/AirshipPluginVersion.kt +++ b/android/src/main/kotlin/com/airship/flutter/AirshipPluginVersion.kt @@ -2,6 +2,6 @@ package com.airship.flutter class AirshipPluginVersion { companion object { - const val AIRSHIP_PLUGIN_VERSION = "7.6.0" + const val AIRSHIP_PLUGIN_VERSION = "7.7.0" } } diff --git a/ios/Classes/AirshipPluginVersion.swift b/ios/Classes/AirshipPluginVersion.swift index e72fa06e..ab2aabc8 100644 --- a/ios/Classes/AirshipPluginVersion.swift +++ b/ios/Classes/AirshipPluginVersion.swift @@ -1,5 +1,5 @@ import Foundation class AirshipPluginVersion { - static let pluginVersion = "7.6.0" + static let pluginVersion = "7.7.0" } diff --git a/ios/airship_flutter.podspec b/ios/airship_flutter.podspec index a74962c3..ca330a62 100644 --- a/ios/airship_flutter.podspec +++ b/ios/airship_flutter.podspec @@ -1,5 +1,5 @@ -AIRSHIP_FLUTTER_VERSION="7.6.0" +AIRSHIP_FLUTTER_VERSION="7.7.0" # # To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html @@ -20,6 +20,6 @@ Airship flutter plugin. s.public_header_files = 'Classes/**/*.h' s.dependency 'Flutter' s.ios.deployment_target = "14.0" - s.dependency "AirshipFrameworkProxy", "7.0.0" + s.dependency "AirshipFrameworkProxy", "7.1.0" end diff --git a/pubspec.yaml b/pubspec.yaml index baa693e8..c295a674 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: airship_flutter description: "Cross-platform plugin interface for the native Airship iOS and Android SDKs. Simplifies adding Airship to Flutter apps." -version: 7.6.0 +version: 7.7.0 homepage: https://www.airship.com/ repository: https://github.com/urbanairship/airship-flutter issue_tracker: https://github.com/urbanairship/airship-flutter/issues