Airship Accengage React Native
A React Native module for Airship's iOS and Android SDK.
Resources
Issues
Please visit https://support.airship.com/ for any issues integrating or using this module.
Requirements:
- Xcode 11+
- iOS: Deployment target 11.0+
- Android: minSdkVersion 16+, compileSdkVersion 28+
- React Native >= 0.60.0
- React Native cli >= 2.0.1
Install
using yarn
yarn add urbanairship-accengage-react-native
using npm
npm install urbanairship-accengage-react-native --save
iOS Setup
- Install pods
cd ios && pod install
Usage
import AirshipAccengage from 'urbanairship-accengage-react-native';
Version 11.0.0 - March 25, 2021
Major release updating the iOS and Android SDKs to 14.3.0. This release contains small breaking changes to the event handling API, and also adds an extender to Android making it easier to modify the Airship instance during takeOff.
- Updated iOS SDK to 14.3.0
- Updated Android SDK to 14.3.0
- PushReceived and background NotificationResponse events are now triggered in the background on Android. To maintain UI thread safety, apps should now clean up any listeners that might modify the UI during
componentWillUnmount
. - UrbanAirship.addListener now returns
Subscription
instead of EmitterSubscription
- Added AirshipExtender to Android to make it easier to modify the Airship instance during takeOff