mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-03-28 21:16:20 +01:00
flutter: remove useless examples and add release APK (#4853)
This commit is contained in:
parent
4c964834e9
commit
017e0ced2e
1 changed files with 9 additions and 13 deletions
|
@ -3,23 +3,11 @@
|
|||
> Google's free, open source, and cross-platform mobile app SDK.
|
||||
> More information: <https://github.com/flutter/flutter/wiki/The-flutter-tool>.
|
||||
|
||||
- Check the Flutter version:
|
||||
|
||||
`flutter --version`
|
||||
|
||||
- Display general help:
|
||||
|
||||
`flutter help`
|
||||
|
||||
- Display help about a specific command:
|
||||
|
||||
`flutter help {{command}}`
|
||||
|
||||
- Execute a Flutter command:
|
||||
|
||||
`flutter {{command}}`
|
||||
|
||||
- Show information about the installed tooling:
|
||||
- Check if all external tools are correctly installed:
|
||||
|
||||
`flutter doctor`
|
||||
|
||||
|
@ -31,6 +19,14 @@
|
|||
|
||||
`flutter run -d all`
|
||||
|
||||
- Download all packages specified in `pubspec.yaml`:
|
||||
|
||||
`flutter pub get`
|
||||
|
||||
- Run tests in a terminal from the root of the project:
|
||||
|
||||
`flutter test {{test/example_test.dart}}`
|
||||
|
||||
- Build a release APK targeting most modern smartphones:
|
||||
|
||||
`flutter build apk --target-platform {{android-arm}} {{android-arm64}}`
|
||||
|
|
Loading…
Add table
Reference in a new issue