# Compiler pour Android

## Via la ligne de commande

Dans un terminal de commande qui est dans le dossier GitHub Papillon, exécutez ces lignes :

{% tabs %}
{% tab title="Release" %}

```sh
git clone git@github.com:PapillonApp/Papillon.git
cd Papillon
npm install
npx expo prebuild -p android
cd .\android\
./gradlew ":app:assembleRelease"
```

{% endtab %}

{% tab title="Debug" %}

```sh
git clone git@github.com:PapillonApp/Papillon.git
cd Papillon
npm install
npx expo prebuild -p android
cd .\android\
./gradlew ":app:assembleDebug"
```

{% endtab %}
{% endtabs %}

L'APK est disponible ici

```shell
cd app/build/outputs/apk/release 
```


---

# 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://docs.papillon.bzh/developper/compile/android.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.
