Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions building-apk.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)).
Expand Down
8 changes: 3 additions & 5 deletions getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,18 +60,16 @@ $ cd <directory where you cloned the flutter repo>
$ 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
Expand Down