Files
kmp-template/README.md

23 lines
895 B
Markdown
Raw Normal View History

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:11:22 -03:00
1. Init git submodules
`git submodule update --init --recursive`
2. Adapt template to your project
2025-09-22 19:25:32 -03:00
## Compose
2025-09-22 19:26:54 -03:00
### [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 19:25:32 -03:00
### [settings.gradle.kts](settings.gradle.kts)
- Change `rootProject.name` to your projects name
2025-09-22 15:32:06 -03:00
2025-09-22 17:33:58 -03:00
## iOS
2025-09-22 15:32:06 -03:00
### [Config.xcconfig](app/iosApp/Configuration/Config.xcconfig)
- Change `PRODUCT_NAME` and `PRODUCT_BUNDLE_IDENTIFIER` to your projects name
2025-09-22 15:17:11 -03:00
### Xcode
- 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)