# 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';
```
