Skip to content

Commit 3a6fbba

Browse files
committed
Merge pull request #154 from flutter/rename_init
update init to create
2 parents ba01ceb + d3f3248 commit 3a6fbba

File tree

2 files changed

+5
-8
lines changed

2 files changed

+5
-8
lines changed

building-apk.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,8 @@ permalink: /building-apk/
55
---
66

77
_Note: An `apk/AndroidManifest.xml` file was already created for
8-
your app by `flutter init`. You can check it out if you like,
9-
but you don't need to modify it
10-
when getting started._
8+
your app by `flutter create`. You can check it out if you like,
9+
but you don't need to modify it when getting started._
1110

1211
First, ensure you installed the Android SDK tools
1312
(see "Setting up your Android device" from [Getting started](/getting-started)).

getting-started.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -60,18 +60,16 @@ $ cd <directory where you cloned the flutter repo>
6060
$ export PATH=`pwd`/bin:$PATH
6161
```
6262

63-
Run `flutter --version` to ensure the `flutter`
64-
command is on your PATH.
63+
Run `flutter --version` to ensure the `flutter` command is on your PATH.
6564

6665
## Creating your first sample app
6766

68-
You can use the `flutter`
69-
command to create a starter project.
67+
You can use the `flutter` command to create a starter project.
7068

7169
Here is an example:
7270

7371
```
74-
$ flutter init -o my_app
72+
$ flutter create -o my_app
7573
```
7674

7775
The above command creates a `my_app` directory that contains a simple demo

0 commit comments

Comments
 (0)