React Native

Getting Started

Installation

npm install react-native-move-sdk --save
#or
yarn add react-native-move-sdk

Setup

iOS

Configuration

  1. Using the terminal, access the iOS folder in your project

  2. Run $pod install

  3. Open the .xcworkspace folder using Xcode

  4. Go to the Capabilities tab of your target settings

  5. 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 = 31

Expo

If you use Expo, contact us for assistance.

Last updated

Change request #70: add MoveSdkAndroidConfig model