> For the complete documentation index, see [llms.txt](https://cramiumlabs.gitbook.io/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://cramiumlabs.gitbook.io/docs/sdk-mpc-android/adding-the-sdk.md).

# 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.
