# Adding the SDK

To integrate the SDK, follow these steps:

1. **Clone the Repository**\
   Clone the SDK repository to your local machine using the following command:

   ```bash
   git clone https://github.com/Cramiumlabs/sdk-mpc-android

   ```
2. Add the SDK dependency to your project-level `settings.gradle.kts`:

   ```groovy
   repositories {
       maven {
           url = uri("file://${rootProject.projectDir}/sdk-mpc-android/repo")
       }
   }

   include(":app")
   include(":sdk")

   // Specify the correct relative path to sdk module
   project(":sdk").projectDir = file("../sdk")
   ```
3. Add the dependency to your app-level `build.gradle`:

   ```groovy
   dependencies {
       implementation("com.cramium.mpc:sdk:SDK_VERSION")
   }
   ```
4. Sync your project with Gradle files to download and integrate the SDK.


---

# Agent Instructions: 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://cramiumlabs.gitbook.io/docs/sdk-mpc-android/adding-the-sdk.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.
