diff --git a/building-apk.md b/building-apk.md index 653f98a2204..a864576ecae 100644 --- a/building-apk.md +++ b/building-apk.md @@ -5,9 +5,8 @@ permalink: /building-apk/ --- _Note: An `apk/AndroidManifest.xml` file was already created for -your app by `flutter init`. You can check it out if you like, -but you don't need to modify it -when getting started._ +your app by `flutter create`. You can check it out if you like, +but you don't need to modify it when getting started._ First, ensure you installed the Android SDK tools (see "Setting up your Android device" from [Getting started](/getting-started)). diff --git a/getting-started.md b/getting-started.md index 456f7b4f852..1d57c2bf60c 100644 --- a/getting-started.md +++ b/getting-started.md @@ -60,18 +60,16 @@ $ cd $ export PATH=`pwd`/bin:$PATH ``` -Run `flutter --version` to ensure the `flutter` -command is on your PATH. +Run `flutter --version` to ensure the `flutter` command is on your PATH. ## Creating your first sample app -You can use the `flutter` -command to create a starter project. +You can use the `flutter` command to create a starter project. Here is an example: ``` -$ flutter init -o my_app +$ flutter create -o my_app ``` The above command creates a `my_app` directory that contains a simple demo