React Native
Getting Started
Installation
npm install react-native-move-sdk --save
#or
yarn add react-native-move-sdkHere is npm package documentation.
Setup
iOS
Configuration
- 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 

Android
Include the maven repository to your gradle build script, where the MOVE SDK package is located.
maven { 
    url "https://dolphin.jfrog.io/artifactory/move-sdk-libs-release" 
}Add the dependency for the MOVE SDK Android library to your module (app-level) Gradle file (usually app/build.gradle).
Use the following SDK and Kotlin versions:
minSdkVersion = 26
kotlinVersion = '1.7.10'
compileSdkVersion = 33
targetSdkVersion = 31Expo
If you use Expo, please take a look at our sample app created with Expo. Note that it is simplified as much as possible and its main task is to show an example of integration with the MOVE SDK. The plugin is required to integrate with the MOVE SDK when using the Expo.
Contact us for assistance if you still have questions.
Further Information
Last updated
