1. 20 Aug, 2020 1 commit
  2. 13 Nov, 2017 1 commit
    • Greg Spencer's avatar
      Creates a new flutter command 'ide-config' and removes *.iml and .idea from tree. (#12958) · 797b39e9
      Greg Spencer authored
      Creates a new (hidden) flutter command 'ide-config' that will create and/or update
      existing .iml files and some files under the .idea directory, as well as
      removing existing *.iml files and the .idea directory.
      
      It also:
      
       * Adds *.iml to the .gitignore
       * Removes existing .iml files from the repo, and moves them to the
         packages/flutter_tools/ide_templates/intellij directory.
       * Adds a flag to ide-config ('--update-templates') that will take any new .iml
         files in the flutter tree and add them to the existing templates.
           - If --overwrite is also specified, then all existing templates will also
             be overwritten with the contents from the flutter tree, and any that have
             been deleted from the flutter tree will also be removed from the
             templates.
       * Added new run configurations for all existing app targets that will now also
         be automatically added to IntelliJ.
       * Setting up the environment also includes setting the coding style guidelines
         and the git VCS.
       * Note that after this PR lands, Flutter developers will need to run it once to
         re-create the .iml files and configuration files that have been removed.
      
      After this PR lands, .iml files will no longer appear in the untracked files
      section for git.
      797b39e9
  3. 15 May, 2017 1 commit
  4. 02 May, 2017 1 commit
  5. 01 May, 2017 1 commit
  6. 14 Apr, 2017 1 commit
    • Brian Slesinsky's avatar
      flutter create: enable Java support in IDEA (#9335) · 5cb90979
      Brian Slesinsky authored
      Generates an android.iml file and a package-level library for flutter.jar.
      
      Does not set up an Android SDK in IDEA; this isn't possible with a
      template-based approach. But IDEA shows a clear warning, so the
      user can fix this by setting the SDK.
      
      (When creating a Flutter project from within IDEA, we can fix this up
      afterwards in the plugin.)
      5cb90979