> For the complete documentation index, see [llms.txt](https://docs.appkickstarter.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.appkickstarter.com/get-started/project-organization.md).

# 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
