# Project organization

### Shared Module

The majority of  the application is written in shared module. AppKickstarter is a Kotlin Multiplatform project and follows the standard organization with commonMain folder where all shared code can be found, androidMain folder where android code only can be found and iOSMain folder where iOS only code is written:

<figure><img src="/files/IXKCtsmTFMMM6kOlWuRZ" alt="" width="563"><figcaption><p>Shared Module</p></figcaption></figure>

Also you may notice:&#x20;

* moko-resources folder where you can find images, localizations, fonts and colors:&#x20;

<figure><img src="/files/VKW7jxaqlEMlO8WeVXlI" alt="" width="563"><figcaption><p>Moko-Resources folder</p></figcaption></figure>

* sqldelight folder where there are database tables and queries + migrations files if there are any migration:

<figure><img src="/files/3Nus0aAKyzlCk3zzNuSm" alt="" width="563"><figcaption><p>SqlDelight folder with database tables, queries and migration files</p></figcaption></figure>

### Android application

<figure><img src="/files/PLERgFOTtHG9FXza294k" alt="" width="563"><figcaption><p>Android Application in a Kotlin Multiplatform Project</p></figcaption></figure>

In the Android project you can find:&#x20;

* Activity
* Application
* res folder with app icon and app theme (just a fix for specific android phones like Xiaomi, the theme is mainly managed in shared code. Learn more about theme [here](/features/theme.md)).
* build.gradle file
* google-services.json file&#x20;

### iOS application


---

# 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.appkickstarter.com/get-started/project-organization.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.
