# Android

Add the `jitpack.io` Maven repository to your `root/build.gradle.kts` file. For example:

```json
allprojects {
 repositories {
    mavenCentral()
    maven { url "https://jitpack.io" }
 }
}
```

In `app/build.gradle.kts` add the StarTowerKit package and its dependencies:

```json
implementation("com.reown:android-core:release_version")
implementation("com.reown:walletkit:release_version")
```

### Next Steps <a href="#next-steps" id="next-steps"></a>

Now that you've installed StarTowerKit, you're ready to start integrating it. The next section will walk you through the process of setting up your project to use the SDK.
