> For the complete documentation index, see [llms.txt](https://docs.movesdk.com/move-platform/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.movesdk.com/move-platform/move-sdk-1.x/sdk/getting-started/android/installation.md).

# Installation

## Adding the MOVE SDK to your app

There are two possible ways to integrate the MOVE SDK:

1. Include from an Artifactory
2. Include binaries directly into your app&#x20;

### Include from Artifactory

Include the maven repository to your gradle build script where the MOVE SDK package is located.

```bash
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).

{% hint style="info" %}
You can check for latest releases here:\
<https://dolphin.jfrog.io/ui/native/move-sdk-libs-release/io/dolphin/move/move-sdk>
{% endhint %}

```bash
// 1.0.0 is the given version number from your artifactory
implementation "io.dolphin.move:move-sdk:1.5.1.29"
```

### Include SDK binary directly

The SDK may be shipped as an AAR library directly. Place the library in a "libs" folder of your application module.  If there is no libs folder, you must create it first.

Once the library is placed in the correct folder, the app build file needs to be adapted as shown below. After a Gradle sync, the MOVE SDK should be ready to use.

{% code title="app build.gradle" %}

```bash
dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar','*.aar'])
    ...
}
```

{% endcode %}

{% hint style="info" %}
You may also include the binaries directly into your own Artifactory. Then you are able to use the Artifactory solution from above.
{% endhint %}

More information about AAR libraries can be found here: <https://developer.android.com/studio/projects/android-library>


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.movesdk.com/move-platform/move-sdk-1.x/sdk/getting-started/android/installation.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
