> ## Documentation Index
> Fetch the complete documentation index at: https://documentation.qonversion.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Android

> Install Qonversion Android SDK to implement in-app subscriptions, validate user receipts, get subscription analytics, and third-party integrations.

export const NextStepsChooseMode = () => <CardGroup cols={2}>
  <Card title="Analytics Mode" icon="chart-line" href="analytics-mode">
    Get subscription analytics in about 20 minutes without changing your purchase flow.
  </Card>
  <Card title="Subscription Management Mode" icon="crown" href="subscription-management-mode">
    Let Qonversion fetch products, make purchases, and manage cross-platform access.
  </Card>
</CardGroup>;

[![GitHub release](https://img.shields.io/github/v/release/qonversion/android-sdk?label=Latest%20Release)](https://github.com/qonversion/android-sdk/releases)

## Install the library

The recommended way to install the Qonversion library for Android is with a build system like Gradle. The library is distributed via [Maven Central](https://search.maven.org).

Add the Qonversion library to the dependencies section in your app **build.gradle**

<CodeGroup>
  ```groovy build.gradle theme={null}
  dependencies {    
       implementation 'io.qonversion.android.sdk:sdk:9.+'
  }
  ```
</CodeGroup>

Or check the current release version on [Github](https://github.com/qonversion/android-sdk/releases) if you want to use a specific version.

## Kids Mode for Qonversion Android SDK

In case you are building an App for Kids, [follow this guide](kids-mode-sdk) to learn about Kids Mode for Qonversion SDKs.

***

## Next steps

The SDK is installed. Choose the mode to implement — this determines how much code you write next.

<NextStepsChooseMode />
