2025-09-22 19:27:25 -03:00
|
|
|
Getting Started
|
2025-09-22 19:25:32 -03:00
|
|
|
----
|
2025-09-22 19:27:25 -03:00
|
|
|
After using this repo as a template you have to do the following changes so you can start working on your project
|
|
|
|
|
|
2025-09-22 21:13:34 -03:00
|
|
|
## 1. Init git submodules
|
2025-09-22 21:12:54 -03:00
|
|
|
|
2025-09-22 21:12:40 -03:00
|
|
|
```git submodule update --init --recursive```
|
2025-09-22 21:11:22 -03:00
|
|
|
|
2025-09-22 21:13:34 -03:00
|
|
|
## 2. Adapt template to your project
|
2025-09-22 21:11:22 -03:00
|
|
|
|
2025-09-22 21:13:34 -03:00
|
|
|
### Compose
|
|
|
|
|
#### [Build.gradle.kts](app/composeApp/build.gradle.kts)
|
2025-09-22 17:33:58 -03:00
|
|
|
- Change `namespace` and `applicationId` to your projects name
|
2025-09-22 21:13:34 -03:00
|
|
|
#### [settings.gradle.kts](settings.gradle.kts)
|
2025-09-22 19:25:32 -03:00
|
|
|
- Change `rootProject.name` to your projects name
|
2025-09-22 15:32:06 -03:00
|
|
|
|
2025-09-22 21:13:34 -03:00
|
|
|
### iOS
|
|
|
|
|
#### [Config.xcconfig](app/iosApp/Configuration/Config.xcconfig)
|
2025-09-22 15:32:06 -03:00
|
|
|
- Change `PRODUCT_NAME` and `PRODUCT_BUNDLE_IDENTIFIER` to your projects name
|
|
|
|
|
|
2025-09-22 21:13:34 -03:00
|
|
|
#### Xcode
|
2025-09-22 15:17:11 -03:00
|
|
|
- Change `Bundle Identifier` of the project (Target -> iosApp -> Build Settings -> Bundle Identifier)
|
|
|
|
|
- Change `Product Name` of the app (Target -> iosApp -> Build Settings -> Product Name)
|
|
|
|
|
- Change `App Category` of the app (Target -> iosApp -> General -> App Category)
|