From 2ae05041247916524abd42c2c30ddf9c266648b2 Mon Sep 17 00:00:00 2001 From: Ulrich GIBERNE Date: Fri, 6 Dec 2024 16:30:24 -0400 Subject: [PATCH 1/2] fix for use frameworks --- plugin/src/withAirshipIOS.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plugin/src/withAirshipIOS.ts b/plugin/src/withAirshipIOS.ts index d217699..0831475 100644 --- a/plugin/src/withAirshipIOS.ts +++ b/plugin/src/withAirshipIOS.ts @@ -171,6 +171,8 @@ const withAirshipServiceExtensionPod: ConfigPlugin = (con return withPodfile(config, async (config) => { const airshipServiceExtensionPodfileSnippet = ` target '${NOTIFICATION_SERVICE_EXTENSION_TARGET_NAME}' do + use_frameworks! :linkage => podfile_properties['ios.useFrameworks'].to_sym if podfile_properties['ios.useFrameworks'] + use_frameworks! :linkage => ENV['USE_FRAMEWORKS'].to_sym if ENV['USE_FRAMEWORKS'] pod 'AirshipServiceExtension' end `; From d6f69db086a00574784a980b8e4318dde55067e6 Mon Sep 17 00:00:00 2001 From: Ulrich GIBERNE Date: Fri, 6 Dec 2024 16:36:32 -0400 Subject: [PATCH 2/2] update version --- CHANGELOG.md | 3 +++ package.json | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index edd702e..0a739d6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Airship Expo Plugin Changelog +## Version 1.3.1 - December 06, 2024 +Patch version that fixes the support for Aiship Notification Service Extension when using `use_frameworks`. + ## Version 1.3.0 - December 03, 2024 Minor version that adds support for Aiship Notification Service Extension and Android Custom Notification Channels. diff --git a/package.json b/package.json index fba042c..32fc3a4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "airship-expo-plugin", - "version": "1.3.0", + "version": "1.3.1", "description": "Airship Expo config plugin", "main": "./app.plugin.js", "scripts": {