Which channel do I use in Flutter SDK?
There was an announcement of Preview 1 at "
Announcing Flutter Release Preview 1 – Flutter – Medium"
Download the latest beta release of the Flutter SDK In the document.
Get Started: Install on macOS - Flutter
Latest beta release version is 0.5.1. It's updated 2 months ago...
$ flutter upgrade
Flutter 0.5.1 • channel beta • https://github.com/flutter/flutter.git
Framework • revision c7ea3ca377 (9 weeks ago) • 2018-05-29 21:07:33 +0200
Engine • revision 1ed25ca7b7
Tools • Dart 2.0.0-dev.58.0.flutter-f981f09760
Latest master release version is 0.5.8-pre.163.
$ flutter channel master
$ flutter upgrade
Flutter 0.5.8-pre.163 • channel master • https://github.com/flutter/flutter.git
Framework • revision 29410abbe7 (2 days ago) • 2018-07-27 22:10:39 -0700
Engine • revision 72a38a6b13
Tools • Dart 2.0.0-dev.69.3.flutter-937ee2e8ca
Which channel do I use in Flutter SDK?
From the Flutter wiki:
Flutter has the following channels, in increasing order of stability:
master
The current tip-of-tree, absolute latest cutting edge build.
Usually functional, though sometimes we accidentally break things.
dev
Previously known as alpha, this is the latest fully-tested build.
Usually functional, but see Bad Builds for a list of known "bad" dev
builds.
beta
Every few weeks, we pick the "best" dev build of the previous
month or so, and promote it to beta. These builds have been tested
with our codelabs.
Eventually we will also have a release build, which will be the best beta build of the previous year or so, but we haven't yet reached a quality level that we are sufficiently happy with to use this label yet.
So, use whichever channel you feel comfortable with, meets your needs and/or has whichever fixes in it you need. Start with beta and go from there.
Announcing Flutter Release Preview 1 – Flutter – Medium"
Download the latest beta release of the Flutter SDK In the document.
Get Started: Install on macOS - Flutter
Latest beta release version is 0.5.1. It's updated 2 months ago...
$ flutter upgrade
Flutter 0.5.1 • channel beta • https://github.com/flutter/flutter.git
Framework • revision c7ea3ca377 (9 weeks ago) • 2018-05-29 21:07:33 +0200
Engine • revision 1ed25ca7b7
Tools • Dart 2.0.0-dev.58.0.flutter-f981f09760
Latest master release version is 0.5.8-pre.163.
$ flutter channel master
$ flutter upgrade
Flutter 0.5.8-pre.163 • channel master • https://github.com/flutter/flutter.git
Framework • revision 29410abbe7 (2 days ago) • 2018-07-27 22:10:39 -0700
Engine • revision 72a38a6b13
Tools • Dart 2.0.0-dev.69.3.flutter-937ee2e8ca
Which channel do I use in Flutter SDK?
From the Flutter wiki:
Flutter has the following channels, in increasing order of stability:
master
The current tip-of-tree, absolute latest cutting edge build.
Usually functional, though sometimes we accidentally break things.
dev
Previously known as alpha, this is the latest fully-tested build.
Usually functional, but see Bad Builds for a list of known "bad" dev
builds.
beta
Every few weeks, we pick the "best" dev build of the previous
month or so, and promote it to beta. These builds have been tested
with our codelabs.
Eventually we will also have a release build, which will be the best beta build of the previous year or so, but we haven't yet reached a quality level that we are sufficiently happy with to use this label yet.
So, use whichever channel you feel comfortable with, meets your needs and/or has whichever fixes in it you need. Start with beta and go from there.
Comments
Post a Comment