# Change App Name, ID & Primary Color

## **Change App Name** <a href="#change-app-name" id="change-app-name"></a>

**Android**

* Open a file /android/app/src/main/AndroidManifast.xml and change the application label.

```markup
<application
    	android:label="Replace with your App name"
    	...>
```

**iOS**

* Open a file /ios/Runner/Info.plist and change the string of **CFBundleName**.

```markup
<key>CFBundleName</key>
<string>Replace with your App name</string>
```

## **Change Application ID** <a href="#change-package-name" id="change-package-name"></a>

In your terminal, run the command below

```
flutter pub run change_app_package_name:main com.new.package.name
```

{% hint style="info" %}
where "com.new\.package.name" is your new package name
{% endhint %}

## **Change App Primary Color** <a href="#change-package-name" id="change-package-name"></a>

Open the file /lib/constants/colors.dart

```
class AppColors {
  static const primaryColor = const Color(0xFFF4B400);
  ...
  ...
  ...
}
```

Change the primaryColor value to a color of your choosing.
