Skip to content

Commit 1a91894

Browse files
committed
feat: add how to change app display name
1 parent 2ac1468 commit 1a91894

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

content/project-structure/app-resources.md

+21
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,18 @@ App_Resources/
2828

2929
Values can be overriden on specific API levels by making the changes in the corresponding directories.
3030

31+
### Android app display name
32+
33+
- `App_Resources/Android/src/main/res/values/strings.xml`
34+
35+
```xml
36+
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
37+
<resources>
38+
<string name="app_name">Your app name</string>
39+
<string name="title_activity_kimera">Your app name</string>
40+
</resources>
41+
```
42+
3143
### Adding native code to an application
3244

3345
There are different ways to add native code to an Android application. You can add Java JAR files or Java and/or Kotlin source files in `App_Resources/Android/libs` and `App_Resources/Android/src` respectively, e.g.:
@@ -240,6 +252,15 @@ Most things on iOS are controlled directly through the app's template code howev
240252
<false/>
241253
```
242254

255+
### iOS app display name
256+
257+
```xml
258+
<key>CFBundleDisplayName</key>
259+
<string>Your app name</string>
260+
<key>CFBundleName</key>
261+
<string>Your app name</string>
262+
```
263+
243264
### Adding custom entitlements
244265

245266
You can add custom entitlements to the `App_Resources/iOS/app.entitlements`

0 commit comments

Comments
 (0)