1. 04 Jun, 2018 3 commits
  2. 01 Jun, 2018 1 commit
  3. 30 May, 2018 4 commits
  4. 28 May, 2018 1 commit
    • Danny Tuppeny's avatar
      Send an event at startup with the protocol version and pid (#17873) · 24e2b238
      Danny Tuppeny authored
      * Send an event at startup with the protocol version and pid
      
      The pid will help with some of the issues of terminate the process when launched through a shell script and the version will allow clients to make decisions about supported features.
      
      I've also bumped the protocol version number for two reasons:
      
      1. This change
      2. We didn't increase it when we added the previous emulator commands
      24e2b238
  5. 22 May, 2018 1 commit
  6. 21 May, 2018 2 commits
  7. 18 May, 2018 1 commit
  8. 14 May, 2018 1 commit
  9. 11 May, 2018 1 commit
  10. 10 May, 2018 5 commits
  11. 09 May, 2018 19 commits
  12. 07 May, 2018 1 commit
    • Chris Bracken's avatar
      Support multi-arch iOS binaries (#17312) · 849676fc
      Chris Bracken authored
      This change adds support for armv7, arm64, and universal iOS apps.
      
      This change eliminates iOS target architecture hardcoding (previously
      arm64 only) and uses the target architecture(s) specified in Xcode's
      ARCHS setting ('Architectures' in Xcode Build Settings).
      
      For universal binaries, set ARCHS to its default value, $(ARCHS_STANDARD).
      
      Note that after changing the architecture in Xcode, developers should
      run 'pod install' from the ios subdirectory of their project. A separate
      change (that will land before this one) will add support for
      automatically detecting project file and Podfile changes and re-running
      pod install if necessary.
      
      This change also adds an --ios-arch option to flutter build aot. In iOS
      AOT builds (in profile and release mode), this dictates which
      architectures are built into App.framework. This flag should generally
      be unnecessary to set manually since flutter build aot is typically only
      invoked internally by flutter itself.
      849676fc