@recurly/engage-react-native
v3.0.0
Published
React Native SDK for Recurly Engage
Readme
How to build and run
The @recurly/engage-react-native library is created from the npx create-react-native-library tool. It generates the example folder for mobile devices.
The example-tv is created from the npx create-expo-app [project name] -e with-tv tool.
Content
- Recurly Engage SDK part 1: business logics; platform/device agnostic package engage-core
- Recurly Engage SDK part 2: platform/device package engage-react-native
- Example app: React Native Expo based example app example
Setup react native environment
React native reference here
Tips:
- Make sure Xcode command line tools are installed
sudo xcode-select -p # should be /Applications/Xcode.app/Contents/Developer
sudo xcode-select --switch /Applications/Xcode.app/Contents/Developer # set to correct one
sudo xcodebuild -license # accept licenseBuild and run
- Install libraries using Yarn(npm should work too)
yarn installIf you are building the example-tv (for TV devices) app for the first time
yarn tv:prebuild- Build the Recurly Engage SDK
yarn build- Run the example app
# Run the mobile example app
yarn example
# or, run the Android TV example app
yarn tv:android
# or, run the tvOS example app
yarn tv:tvosInstallation
The SDK is published on the public npm registry — no authentication token required.
npm install @recurly/engage-core @recurly/engage-react-native
# or
yarn add @recurly/engage-core @recurly/engage-react-nativeLaunch example-tv app in a physical Apple TV
- make sure
expois installed globally. if not
npm install -g expo- go to the
example-tvfolder, and start metro. You should see something likeMetro waiting on exp://...:8081in the terminal
npx expo start- open the xcode with the project files from the
example-tv/ios/exampletvfolder - from xcode, make sure the signing provisioning profile is correct
- from xcode, run the app toward your physical device
- then in your terminal, you will see the javascript is built and ready to use
Common Errors
- can't load app in an iOS simulator
error from expo, Xcode must be fully installed before you can continue. Continue to the App Store. make sure you have xcode and an iOS simulator running. then if it still doesn't work, run sudo xcode-select -switch /Applications/Xcode.app to instruct expo the Xcode location
- android TV emulator failed to call the ping api
don't know the exact reason. you just need to delete the emulator and create a new one
