> For the complete documentation index, see [llms.txt](https://cyclone-nepal.gitbook.io/digitalhr-flutter/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://cyclone-nepal.gitbook.io/digitalhr-flutter/flutter-setup/change-app-name.md).

# Change App Name

## Android

Open the file AndroidManifest.xml under android--> app --> src --> main. Enter the preferred app name in the label under application tag.

```
<application
        android:label="Enter Your Desired Name Here" 
        android:name="${applicationName}"
        android:requestLegacyExternalStorage="true"
        android:icon="@mipmap/launcher_icon">
```

## iOS

For iOS, change the name for `CFBundleDisplayName` as shown in image below.

<figure><img src="https://2794514790-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FmmjJuk8j1ruVTJbUPyXz%2Fuploads%2FOQjvliSFKeKFRzYcU9Aw%2FIMAGE%202022-11-10%2013%3A58%3A07.jpg?alt=media&amp;token=03744247-ea48-4c4a-8ac2-23c39cee09e7" alt=""><figcaption></figcaption></figure>
