# Android Usage

In this guide we will see how we can use ShapeShift in an Android project.

## Installation

Include the following dependency in your `build.gradle` file.

```groovy
implementation 'dev.krud:shapeshift:0.8.0'
```

```groovy
// Add Maven Central to your repositories if needed
repositories {
    mavenCentral()
}
```

## Usage

All of ShapeShift's features are available in Android. Continue to the [Quick Start](/introduction/quick-start.md) guide or jump directly to the [Annotations](/api-documentation/annotations.md), [Kotlin DSL](/api-documentation/dsl.md) or [Java Builder](/api-documentation/java-builder.md) APIs.

{% hint style="info" %}
ShapeShift uses reflection for its mapping functionality. If ProGuard is enabled in the project then mapped models should be excluded from obfuscation in order for the mapping to work.
{% endhint %}


---

# 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://shapeshift.krud.dev/guides/android-usage.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.
