1. 07 Aug, 2017 2 commits
  2. 29 Jun, 2017 1 commit
  3. 20 Jun, 2017 1 commit
  4. 13 Jun, 2017 1 commit
  5. 24 May, 2017 1 commit
  6. 22 May, 2017 1 commit
  7. 19 May, 2017 1 commit
  8. 09 May, 2017 1 commit
  9. 08 May, 2017 2 commits
  10. 06 May, 2017 1 commit
  11. 05 May, 2017 1 commit
  12. 03 May, 2017 1 commit
  13. 01 May, 2017 1 commit
  14. 24 Apr, 2017 1 commit
  15. 21 Apr, 2017 1 commit
  16. 17 Apr, 2017 1 commit
  17. 14 Apr, 2017 1 commit
  18. 07 Apr, 2017 1 commit
  19. 04 Apr, 2017 2 commits
    • Michael Thomsen's avatar
      Update IJ files to match latest flutter create template (#9103) · 398ee35e
      Michael Thomsen authored
      * Make IntelliJ metadata files consistent with the current flutter create template
      
      * Add missing IJ files from current flutter create template
      
      * Remove run config from layers as it requires running with -t
      
      * Remove workspace.xml files per review feedback
      398ee35e
    • Jakob Andersen's avatar
      Android: Set evaluationDependsOn for plugin subprojects. (#9179) · 5541d71b
      Jakob Andersen authored
      Gradle projects are evaluated in lexicographical order, and the plugin
      projects are at the same level as the :app project, so if a plugin has
      a name that comes before 'app' (like, for example, any name that starts
      with a capital letter), the plugin project will be evaluated before
      :app.
      
      Since :app applies the Flutter Gradle plugin, which tries to
      modify the dependencies of the plugin projects, we have a problem if the
      plugin projects have already been evaluated. Adding
      evaluationDependsOn(':app') to the plugin projects fixes this.
      
      Updated example projects to the latest (plugin-enabled) Gradle build
      files.
      
      Also removed two unused imports in `pluginClass.java.tmpl`.
      5541d71b
  20. 23 Mar, 2017 1 commit
    • Chris Bracken's avatar
      Build Flutter app as a framework on iOS (#8971) · 0ee3f57a
      Chris Bracken authored
      **THIS IS A BREAKING CHANGE.** See below for migration steps for
      existing projects.
      
      Previously, Flutter app code was built as a raw dylib on iOS.  Dynamic
      libraries outside of a framework bundle are not supported on iOS, except
      for the system Swift libraries provided by Xcode.
      
      See:
      https://developer.apple.com/library/content/technotes/tn2435/_index.html#//apple_ref/doc/uid/DTS40017543-CH1-TROUBLESHOOTING_BUNDLE_ERRORS-EMBEDDED__DYLIB_FILES
      
      * Migrates Xcode build from app.dylib to App.framework
      * Migrates flutter create template
      * Migrates example projects
      
      Migration steps for existing projects
      =====================================
      
      The following steps should be taken from the root of your Flutter
      project:
      
      1. Edit `ios/.gitignore`: add `/Flutter/App.framework` on a new line.
      2. In the Xcode project navigator, remove `app.dylib` from the Flutter
         folder. Delete this file from the `ios/Flutter` directory in your project.
      3. Run a build to generate `ios/Flutter/App.framework`. From the command
         line, run `flutter build ios`. If you have not configured app signing
         in Xcode, an alternative method is to open the simulator, then run
         `flutter run -d iP`.
      4. In the Xcode project navigator, select the `Runner` project. In the
         project settings that are displayed in the main view, ensure that the
         `Runner` target is selected. You can verify this by exposing the
         sidebar using the [| ] icon in the upper-left corner of the main
         view.
      5. Select the *General* tab in the project settings. Under the
         *Embedded Binaries* section, click '+' to add `App.framework`. In the
         sheet that drops down, click the *Add Other...* button. Navigate to
         the `ios/Flutter` directory and select `App.framework`. Click *Open*.
         In the sheet that drops down, select *Create folder references*, then
         click *Finish*.
      6. In the project settings, verify that `App.framework` has been added to the
         *Embedded Binaries* and *Linked Frameworks and Libraries* lists.
      7. In the Xcode project navigator, drag `App.framework` under the
         Flutter folder.
      8. In the Xcode project navigator, select `Flutter` then from the
         *File* menu, select *Add Files to "Runner"...*. Navigate to the
         `ios/Flutter` directory, select `AppFrameworkInfo.plist` and click
         the *Add* button.
      9. From the command line, in your project directory, run
         `flutter build clean`, then `flutter run`.
      
      At this point your project should be fully migrated.
      0ee3f57a
  21. 08 Mar, 2017 2 commits
  22. 07 Mar, 2017 2 commits
  23. 28 Feb, 2017 1 commit
  24. 21 Feb, 2017 1 commit
  25. 15 Feb, 2017 2 commits
  26. 14 Feb, 2017 1 commit
  27. 09 Feb, 2017 1 commit
  28. 07 Feb, 2017 1 commit
  29. 03 Feb, 2017 1 commit
  30. 01 Feb, 2017 2 commits
  31. 27 Jan, 2017 1 commit
  32. 24 Jan, 2017 1 commit
  33. 23 Jan, 2017 1 commit
    • Michael Thomsen's avatar
      Update IntelliJ template for new projects and existing samples (#7501) · 24f1b2ee
      Michael Thomsen authored
      * Disable 'Show Excluded' by default
      
      * Move .iml file inside .idea dir
      
      * Remove pub and build excludions as they are automatically set by the Dart plugin
      
      * Exclude .idea folder (new users will edit it through the IJ UI, not the file)
      
      * Move .iml files into .idea dir to be consistent with template changes
      
      * Add workspace.xml from new template to existing samples
      
      * Update current examples to match template changes for excluding folders
      
      * Add missing flutter.yaml to make sure there are no analysis errors
      
      * Add back .pub and build excludeFolder tags per https://github.com/flutter/flutter-intellij/issues/630#issuecomment-272887230
      
      * Remove workspace.xml from example per review feedback
      24f1b2ee