Package Exports
- kinvey-react-native-sdk
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (kinvey-react-native-sdk) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Kinvey React Native SDK
The Kinvey React Native SDK is used to develop an React Native application that connects to Kinvey.
Install
Using npm install the sdk:
npm i --save kinvey-react-native-sdkInstall Async Storage
You will need to install the peer dependencies @react-native-async-storage/async-storage, react-native-keychain and react-native-inappbrowser-reborn
npm i --save @react-native-async-storage/async-storagenpm i --save react-native-keychainnpm i --save react-native-inappbrowser-rebornAfter installing them, make sure you install the cocoapods for iOS.
cd ios && pod install && cd ..Optional Install Push Notification
If you would like your application to receive push notifications you will need to install the peer dependency react-native-push-notification.
npm i --save react-native-push-notificationFor iOS
To receive push notifications on iOS you will need to install @react-native-community/push-notification-ios.
npm i --save @react-native-community/push-notification-iosAfter installing @react-native-community/push-notification-ios make sure you install the cocoapods for iOS.
cd ios && pod install && cd ..Refer to the this guide to update your AppDelegate.m.
Make sure your project in Xcode has the Push Notifications capability on.
For Android
Follow this guide to complete setting up Android.