React Native
Getting Started
Last updated
Getting Started
Last updated
Using the terminal, access the iOS folder in your project
Run $
pod install
Open the .xcworkspace folder using Xcode
Go to the Capabilities tab of your target settings
Turn on Background Modes and enable Location updates
Include the maven repository to your gradle build script, where the MOVE SDK package is located.
Add the dependency for the MOVE SDK Android library to your module (app-level) Gradle file (usually app/build.gradle).
You can check for latest releases here: https://dolphin.jfrog.io/ui/native/move-sdk-libs-release/io/dolphin/move/move-sdk
System Permissions
Based on the passed MoveConfigs oninitialization
, the SDK determines the required permissions to activate the requested services. If all permissions are granted when the SDK is initialised, it will transit to the MoveSDKState "ready
".
The host app must verify that all the permissions required for the passed configs are granted. In case the required permissions were missing when calling the SDK initialization API, the MoveSDKState will transit to MoveSDKState "permissionMissingerror
".
Check iOS permission handling and Android permission handling for details about permissions and background modes required for each service.