- 12 Jan, 2023 1 commit
-
-
Andrew Kolos authored
* reduce pub output from flutter create * fix fake Pub implementations * fix tests * Update pub.dart * replace enum with simpler boolean * fix tests * Revert "fix tests" This reverts commit 8a3182d3b95d4f2bf337343cdb76e88c2f428ca8. * Revert "replace enum with simpler boolean" This reverts commit 445dbc443db4eb5ce284f76749f60e81208b8783. * go back to using an enum
-
- 10 Jan, 2023 1 commit
-
-
Sigurd Meldgaard authored
* Align `flutter pub get/upgrade/add/remove/downgrade` * Add final . to command description * Remove trailing whitespace * Don't print message that command is being run * Update expectations * Use relative path * Remove duplicated line * Improve function dartdoc
-
- 21 Dec, 2022 2 commits
-
-
stuartmorgan authored
* Improve Swift plugin implementation * Add iOS tests * Review feedback on structure * Remove duplicate scheme file * Add macOS * Add iOS * swift test tweaks * unit tests * Whitespace * Add e2e tests
-
Michael Goderbauer authored
-
- 16 Dec, 2022 2 commits
-
-
Christopher Fujino authored
* pin package intl and roll pub packages * add test * fix analysis
-
fzyzcjy authored
-
- 15 Dec, 2022 4 commits
-
-
hellohuanlin authored
* [tools]some ui polish for build ipa validation * do not print out a few success validations * rename installed type to success for more general usage * forgot nit after reverting custom validation types and re-use doctor types
-
Christopher Fujino authored
* wip * remove temp text file * fix tests * add test * default to off * restore gitignore * update * apply annotation to cupertino icons as well * update reference to library in icon_tree_shaker.dart * update tests * fix tests * remove hack to skip non-const check on web * add hint about how much reduction and test
-
Jenn Magder authored
-
stuartmorgan authored
* Add an integration test to plugin template example Dart unit tests don't exercise host-side plugin code at all, so the example tests in the plugin template currently have very little meaningful coverage. This adds an integration test to the example app when creating a plugin, so that there's an example of how to actually test that a complete round-trip plugin call works. This is done as a separate template that's currently only used by the plugin template because I don't know what a good example for a non-plugin case would be that isn't largely just a duplicate of the widget tests. However, the integration test pre-includes conditionals around the parts that are plugin-specific so that it can more easily be expanded to other use cases later (e.g., in https://github.com/flutter/flutter/issues/68818). Part of https://github.com/flutter/flutter/issues/82458 * Add integration test to expected dependencies of a plugin app * Test fixes * Make an explicit test case
-
- 12 Dec, 2022 1 commit
-
-
Loïc Sharma authored
-
- 09 Dec, 2022 2 commits
-
-
Siva authored
* Roll Flutter Engine from 67254d6e4b03 to 8d83b98c55b3 * Roll Dart SDK from 35a9facce191 to e517487c5679 (Dart 3.0) (#38105) * Bump SDK versions. * Bump Dart SDK version constraints * Update shrine package to 2.0.1 (null safe version) * Fix more tests. * Include patches from Jason for min android sdk version * Fix analyzer warning
-
Christopher Fujino authored
-
- 02 Dec, 2022 3 commits
-
-
Jackson Gardner authored
You can now specify a --local-web-sdk flag to point to a wasm_release folder. This will make it so that only artifacts that pertain to the web sdk are overridden to point to the wasm_release folder. Other artifacts (such as impellerc) will pull from the cache, or from the --local-engine path if that is specified. This also uses precompiled platform kernel files for both ddc and dart2js
-
hellohuanlin authored
* [tools]build IPA validation bundle identifier using default com.example * rephrase the warning
-
hellohuanlin authored
* [tools]build ipa validate launch image using template files * reuse more code by sharing the same file key * fix space
-
- 01 Dec, 2022 1 commit
-
-
Nehal Patel authored
* Removes retries from "pub get" and proxies its stdout output * Fix issue where ErrorHandlingProcessManager does not forward "mode" parameter to backing ProcessManager's "start" method * Make "pub get" use ProcessStartMode.inheritStdio instead of forwarding bytes to stdout and stderr * Fix tests * Remove unused env var * Add back 'Running "flutter pub get"...' status log * Fix indent * Add Pub.test() constructor which lets tests mock stdio
-
- 30 Nov, 2022 1 commit
-
-
Christopher Fujino authored
-
- 29 Nov, 2022 1 commit
-
-
hellohuanlin authored
* [tools]build ipa validate icon size * add more checks in case apple change the format, and also add device lab tests * do not depend on collection package
-
- 22 Nov, 2022 1 commit
-
-
Kevin Moore authored
* [flutter_tools] Add --dump-info, --no-frequency-based-minification flags Also some cleanup to named arguments to the buildWeb function Fixes https://github.com/flutter/flutter/issues/115854 * fix tests
-
- 21 Nov, 2022 1 commit
-
-
Christopher Fujino authored
* allow persisting synthetic package with option * allow presisting synthetic packages dir * fix * fix bug and add tests * clean up tests * nits
-
- 16 Nov, 2022 2 commits
-
-
hellohuanlin authored
* [tools]build ipa validate template icon files * use the same box for both validations, and added some unit test, and some nits * add unit test for templateImageDirectory * use fs.path.join intead of raw path * use the correct filesystem * lint * use absolute path for flutter_template_images * fix rebase * update indentation
-
Elias Yishak authored
* removing default values for [reporter] and [timeout]] * passing reporter arg to see tests pass * added test to confirm TestCommand is not passing defaults * add'l helper message for [reporter] arg * default behavior for github actions + fixed tests * removing github conditional for reporter + related test * removing unused import
-
- 15 Nov, 2022 1 commit
-
-
Jenn Magder authored
-
- 13 Nov, 2022 1 commit
-
-
Jonah Williams authored
Revert "[web] Add `--local-web-sdk` flag and use precompiled platform kernels for dart2js and ddc (#114639)" (#115242) This reverts commit 0e9ee367.
-
- 12 Nov, 2022 1 commit
-
-
Jackson Gardner authored
* Dart2JS build step looks for compiled platform binaries. * Use new locations of platform binaries. * Added --local-web-sdk command line flag. * Need to use the matching frontend server when doing ddc stuff. * Update packages/flutter_tools/lib/src/test/web_test_compiler.dart Co-authored-by: Mouad Debbar <mouad.debbar@gmail.com> * Update packages/flutter_tools/lib/src/runner/flutter_command_runner.dart Co-authored-by: Mouad Debbar <mouad.debbar@gmail.com> * Formatting issues. * Need to use URI format for platform dill. * Fix resident runner tests. * Fix analysis issue. * Fix and add unit tests. * Add some useful comments. * Refine doc comments for flags. Co-authored-by: Mouad Debbar <mouad.debbar@gmail.com>
-
- 11 Nov, 2022 1 commit
-
-
Jonah Williams authored
* [flutter_tools] support github reporter * Update packages/flutter_tools/lib/src/commands/test.dart Co-authored-by: Christopher Fujino <fujino@google.com> Co-authored-by: Christopher Fujino <fujino@google.com>
-
- 10 Nov, 2022 1 commit
-
-
Ian Hickson authored
The recent survey suggests that some people are not finding documentation after they get started with Flutter, so let's just give them links right away. It might not help everyone but there's not really any downside so...
-
- 08 Nov, 2022 2 commits
-
-
Jesús S Guerrero authored
* update flutter build command * update tests * fix analyze suggestions
-
Alex Wallen authored
* Alphabetize setup calls * Add --flavor as an option for install * Add verbose logging in install command * Test that flavors build succeeds with proper flavor and fails with bogus one. * Remove unused import * The import was used... * SQUASH * Add flavor install test * Rename test * Add flavors install integration tests * correct error message * remove unused imports * Delete copy test * update test target * Refactor mechanism to read buildInfo * Remove unused import * Set affected test targets to bringup: true Co-authored-by: a-wallen <stephenwallen@google.com>
-
- 07 Nov, 2022 1 commit
-
-
Victoria Ashworth authored
* exclude xcworkspace that begins with a period * fix if spacing, add comment * add unit test for when no xcworkspace found * update to use xcodeWorkspace, make it nullable and refactor * check if hostAppRoot exists before trying to get xcworkspace * use local variables to take advantage of type promotion * only check if not null, don't need to check if exists * readd exist check for migrate * readd missing line at end of file
-
- 03 Nov, 2022 4 commits
-
-
hellohuanlin authored
-
Jason Simmons authored
The "flutter create" command on macOS may run other commands such as openssl when it calls _getCodeSigningIdentityDevelopmentTeam
-
Zachary Anderson authored
This reverts commit e6300da2.
-
hellohuanlin authored
-
- 02 Nov, 2022 1 commit
-
-
Christopher Fujino authored
-
- 01 Nov, 2022 1 commit
-
-
Elias Yishak authored
-
- 31 Oct, 2022 1 commit
-
-
Gary Qian authored
-
- 27 Oct, 2022 1 commit
-
-
Christopher Fujino authored
-
- 24 Oct, 2022 1 commit
-
-
Greg Spencer authored
-