Commit e23d7607 authored by Ian Hickson's avatar Ian Hickson

Dart SDK is no longer needed

parent 6e14bd2e
...@@ -11,11 +11,6 @@ Things you will need ...@@ -11,11 +11,6 @@ Things you will need
* An IDE. We recommend [Atom](https://github.com/flutter/engine/wiki/Using-Atom-with-Flutter). * An IDE. We recommend [Atom](https://github.com/flutter/engine/wiki/Using-Atom-with-Flutter).
* An ssh client (used to authenticate with GitHub). * An ssh client (used to authenticate with GitHub).
* Python (used by some of our tools). * Python (used by some of our tools).
* The Dart SDK (see [Issue #54](https://github.com/flutter/flutter/issues/54)
about downloading the Dart SDK automatically). _If you're also
working on the Flutter engine, you can use the copy of the Dart SDK
in `.../engine/src/third_party/dart-sdk/dart-sdk`._
- [https://www.dartlang.org/downloads/archive/](https://www.dartlang.org/downloads/archive/)
* The Android platform tools (see [Issue #55](https://github.com/flutter/flutter/issues/55) * The Android platform tools (see [Issue #55](https://github.com/flutter/flutter/issues/55)
about downloading the Android platform tools automatically). about downloading the Android platform tools automatically).
_If you're also working on the Flutter engine, you can use the _If you're also working on the Flutter engine, you can use the
...@@ -28,9 +23,9 @@ Getting the code and configuring your environment ...@@ -28,9 +23,9 @@ Getting the code and configuring your environment
------------------------------------------------- -------------------------------------------------
* Ensure all the dependencies described in the previous section, in particular * Ensure all the dependencies described in the previous section, in particular
git, ssh, and python are installed. Ensure that `dart`, `pub`, and `adb` git, ssh, and python are installed. Ensure that `adb`
(from the Dart SDK and the Android platform tools) are in your path (e.g., (from the Android platform tools) is in your path (e.g.,
that `which dart` and `which adb` print sensible output). that `which adb` prints sensible output).
* Fork `https://github.com/flutter/flutter` into your own GitHub account. If * Fork `https://github.com/flutter/flutter` into your own GitHub account. If
you already have a fork, and are now installing a development environment on you already have a fork, and are now installing a development environment on
a new machine, make sure you've updated your fork so that you don't use stale a new machine, make sure you've updated your fork so that you don't use stale
...@@ -46,9 +41,7 @@ Getting the code and configuring your environment ...@@ -46,9 +41,7 @@ Getting the code and configuring your environment
Flutter depends on. You can replicate what this script does by running Flutter depends on. You can replicate what this script does by running
`pub get` in each directory that contains a `pubspec.yaml` file. `pub get` in each directory that contains a `pubspec.yaml` file.
* Add this repository's `bin` directory to your path. That will let you use the * Add this repository's `bin` directory to your path. That will let you use the
`flutter` command in this directory more easily. (If you have previously `flutter` command in this directory more easily.
activated the `flutter` package using `pub`, you should deactivate it and use
the script in `bin` instead: `pub global deactivate flutter`.)
Running the examples Running the examples
-------------------- --------------------
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment