> For the complete documentation index, see [llms.txt](https://uxper.gitbook.io/app-flutter/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://uxper.gitbook.io/app-flutter/config-your-app/update-project-name-if-needed.md).

# Update the project name

**1. pubspec.yaml**: change the name to *your\_new\_project\_name*

```
name: your_new_project_name_here // Golo
description: your_description_here // GetGolo.com
version: 1.0.0+5
```

**2. Replace all packages imported by the new package name**

Example: &#x20;

```
import 'package:Golo/src/entity/City.dart';
```

to

```
import 'package:your_new_project_name_here/src/entity/City.dart';
```
