1. 02 Nov, 2023 1 commit
  2. 25 Oct, 2023 1 commit
  3. 24 Oct, 2023 1 commit
  4. 03 Aug, 2023 1 commit
  5. 19 Apr, 2023 1 commit
  6. 28 Jun, 2021 1 commit
  7. 15 Jun, 2020 1 commit
  8. 12 Apr, 2020 1 commit
  9. 04 Oct, 2018 1 commit
    • Greg Spencer's avatar
      Rename module --> application in flutter create command. (#22565) · 9f23866a
      Greg Spencer authored
      This renames the "module" template to the "application" template, and makes "application" the default. The existing "app" template is now deprecated.
      
      flutter create also now recognizes the type of project in an existing directory, and is able to recreate it without having the template type explicitly specified (although you can still do that). It does this now by first looking in the .metadata file for the new project_type field, and if it doesn't find that, then it looks at the directory structure. Also, the .metadata file is now overwritten even on an existing directory so that 1) the project_type can be added to legacy projects, and 2) the version of Flutter that updated the project last is updated.
      
      I also cleaned up a bunch of things in create_test.dart, added many more tests, and added an example test to the test/ directory in the generated output of the application template.
      
      Fixes #22530
      Fixes #22344
      9f23866a
  10. 08 Jan, 2018 1 commit
  11. 23 Mar, 2017 1 commit
    • Jakob Andersen's avatar
      Automatically wire dependencies for native plugins (#8891) · b61e1690
      Jakob Andersen authored
      Go through all packages brought in by pub, and write the name and path of every one that is a flutter plugin into .flutter-plugins.
      
      In android/settings.gradle and ios/Podfile, read in .flutter-plugins, if that file exists. The Android / iOS code from the plugins is automatically added as dependencies of the native code of the app.
      b61e1690
  12. 10 Feb, 2017 1 commit
    • Jakob Andersen's avatar
      Make new project template gradle-based for Android. (#7902) · b246c5e7
      Jakob Andersen authored
      * Make new project template gradle-based for Android.
      
      With this change, the 'new project' template uses the same gradle-based build for Android as the hello_services example. This has some implications on build performance, since we're now building a complete Android app instead of just combining a pre-compiled .dex with the Flutter assets.
      
      The very first build is a little over 2x slower, since it needs to download gradle and build the build scripts before getting to the actual code. Subsequent builds with changes to the code are comparable to the old builds. Null builds are faster. Enabling the gradle daemon speeds up subsequent builds by around 5s.
      
      * Move Flutter Gradle plugin to Flutter root.
      b246c5e7
  13. 03 Jun, 2016 1 commit
  14. 14 Mar, 2016 1 commit