React Native

Getting Started

Installation

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

Here is npm package documentation.

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, 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

See also the Appendix section to make sure you are not missing anything.

Last updated