3.33.0
Important If you are integrating Push Stories via CocoaPods and are setting use_framework!
in your Podfile, you must add -ObjC
to the Build Setting Other Linker Flags of your notification content extension.
Breaking
- Changed Push Story integration to use XCFrameworks for Cocoapods and manual integration. Applications currently integrating Push Stories via Cocoapods or manual integration must follow these steps when updating:
- In your Notification Content Extension target:
- Remove
AppboyPushStory.framework
fromFrameworks and Libraries
under theGeneral
tab.
- Remove
- In your application target:
- Delete the
Copy File
build phase copying theAppboyPushStory.framework
to theFrameworks
destination. - Delete the
Run Script
build phase that starts with:
- Delete the
- In your Notification Content Extension target:
APP_PATH="${TARGET_BUILD_DIR}/${WRAPPER_NAME}"
find "$APP_PATH" -name 'AppboyPushStory.framework' -type d | while read -r FRAMEWORK
...
- Removed
ABKSDWebImageProxy
'sprefetchURLs:
method.
Fixed
- Fixes a double redirection bug in Push Stories when the app is in a terminated state and the
UNUserNotificationCenter
delegate is not theAppDelegate
.