You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
240
252
<false/>
241
253
```
242
254
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
+
243
264
### Adding custom entitlements
244
265
245
266
You can add custom entitlements to the `App_Resources/iOS/app.entitlements`
0 commit comments