- 07 Aug, 2017 2 commits
-
-
Jaime Wren authored
-
Chris Bracken authored
The most recent Flutter IntelliJ plugin replaces FLUTTER_MODULE with WEB_MODULE and eliminates the exclusion of packages/ directories. Use of the packages/ directory was turned off by default months ago, and is replaced by the .packages file.
-
- 29 Jun, 2017 1 commit
-
-
Mikkel Nygaard Ravn authored
-
- 20 Jun, 2017 1 commit
-
-
Michael Goderbauer authored
-
- 13 Jun, 2017 1 commit
-
-
Brian Slesinsky authored
Currently this just prints the observatory URL as a JSON event. Refactored the code to make this fit in.
-
- 24 May, 2017 1 commit
-
-
Mikkel Nygaard Ravn authored
-
- 22 May, 2017 1 commit
-
-
Hans Muller authored
-
- 19 May, 2017 1 commit
-
-
Chris Bracken authored
Under android/ directory, ignore: GeneratedPluginRegistrant.java Under ios/ directory, ignore: GeneratedPluginRegistrant.h GeneratedPluginRegistrant.m Pods/
-
- 09 May, 2017 1 commit
-
-
Michael Thomsen authored
* Roll android build tools to 25.0.3 * Roll android build tools to 25.0.3 in templates
-
- 08 May, 2017 2 commits
-
-
Michael Thomsen authored
This reverts commit 5ed2984e.
-
Michael Thomsen authored
-
- 06 May, 2017 1 commit
-
-
Brian Slesinsky authored
This ensures that when someone opens the project using IDEA, the Flutter plugin will find the location of the Flutter SDK and run "flutter packages get".
-
- 05 May, 2017 1 commit
-
-
Chris Bracken authored
Enable plugin infra for both iOS and Android post-#9791.
-
- 03 May, 2017 1 commit
-
-
Chris Bracken authored
Brings hello_world and flutter_gallery Android code in line with the corresponding iOS code.
-
- 01 May, 2017 1 commit
-
-
Chris Bracken authored
-
- 24 Apr, 2017 1 commit
-
-
Michael Thomsen authored
-
- 21 Apr, 2017 1 commit
-
-
Michael Thomsen authored
* Add Pods cache dir to ios/.gitngnore * Add missing ending newlines
-
- 17 Apr, 2017 1 commit
-
-
Phil Quitslund authored
Follow-up from #9422
-
- 14 Apr, 2017 1 commit
-
-
Devon Carew authored
-
- 07 Apr, 2017 1 commit
-
-
Ian Hickson authored
Aggressively apply the const lint.
-
- 04 Apr, 2017 2 commits
-
-
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
-
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`.
-
- 23 Mar, 2017 1 commit
-
-
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.
-
- 08 Mar, 2017 2 commits
-
-
Chris Bracken authored
* Revert "Update Hello World to latest iOS project template (#8634)" This reverts commit 6dc6ed4e. * Revert "Update Gallery to latest iOS project template (#8637)" This reverts commit 84c42aac. * Revert "Update Stocks to latest iOS project template (#8640)" This reverts commit 90774c18.
-
Chris Bracken authored
-
- 07 Mar, 2017 2 commits
-
-
Chris Bracken authored
Update templates and example Xcode project files to indicate they've been tested for Xcode 8.3 compatibility.
-
Chris Bracken authored
Gallery and stocks: * Add 20x20 notification icons. * Remove unused 76x76 (3x scale) icon. Other examples: update JSON to Xcode 8.2.1 defaults Fixes warnings for missing/unused icon assets in Xcode 8.2.x
-
- 28 Feb, 2017 1 commit
-
-
Michael Thomsen authored
-
- 21 Feb, 2017 1 commit
-
-
Michael Thomsen authored
-
- 15 Feb, 2017 2 commits
-
-
Michael Thomsen authored
* Update hello_world to new gradle based build flow * Update flutter_gallery to gradle based build * Align hello_services with new gradle based build * Update platform_services to new gradle based build * Upgrade stock to gradle based build
- 14 Feb, 2017 1 commit
-
-
Michael Thomsen authored
* Move .iml file back to project root directory * Update .iml location in all examples
-
- 09 Feb, 2017 1 commit
-
-
Chris Bracken authored
Required to support Flutter SDK paths with spaces.
-
- 07 Feb, 2017 1 commit
-
-
Chris Bracken authored
-
- 03 Feb, 2017 1 commit
-
-
Chris Bracken authored
Subclassing FlutterAppDelegate is not required for real-world apps, but it's what 'flutter create' generates, and applies the default behaviours that most real-world apps will want.
-
- 01 Feb, 2017 2 commits
-
-
Chris Bracken authored
This avoids Xcode complaining at us about unused xcconfig files (for the time being).
-
Chris Bracken authored
-
- 27 Jan, 2017 1 commit
-
-
Chris Bracken authored
Almost all real-world apps will want a custom app delegate, and 'flutter create' code-gens one by default. This brings the samples in line with our templates and the most common use case.
-
- 24 Jan, 2017 1 commit
-
-
Ian Hickson authored
-
- 23 Jan, 2017 1 commit
-
-
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
-