Jason Simmons
6e0b59fc09
Add a flag that selects which Android device ID is the target for Flutter commands
2015-11-05 15:53:32 -08:00
Adam Barth
297e9c33fa
Support Jelly Bean
2015-11-04 08:57:33 -08:00
Devon Carew
7d0a298b0b
start a daemon command
...
wrap up first daemon implementation
2015-11-03 15:58:02 -08:00
Devon Carew
5dc4a7cce4
abstract some OS operations
2015-11-02 13:07:56 -08:00
Adam Barth
94b472ff67
Add a --no-http flag to start command
...
This flag builds a local FLX file and pushes that to the device instead of
using an HTTP server.
2015-10-31 12:18:03 -07:00
Devon Carew
48c3d01587
fix the stop command
2015-10-30 13:54:39 -07:00
Todd Volkert
a57109beba
Wait for sky server to start before starting device
...
Instead of just waiting for the sky server process to start
before we start the activity on the device, this causes us to
wait for the sky server to actually start listening on its port
Fixes #141
2015-10-29 14:19:15 -07:00
Devon Carew
678af9c045
fix some issues found by strong mode
2015-10-28 13:42:46 -07:00
Devon Carew
5dbeb8f018
fix tests on windows
...
remove a runInShell arg on windows when launching pub
2015-10-23 22:44:56 -07:00
Nathan Kerr
bfeaaa8fb7
Web paths should always replace \ with /
2015-10-23 14:04:09 -07:00
Nathan Kerr
54e45e2b56
Don't rely on external shasum program to calculate sum of the APK.
...
Windows has no direct way to kill a process based on port. Uses netstats and loops through the results to find the correct process to kill.
Also modify Process.run for the server to runInShell if on Windows.
Style nits.
2015-10-23 13:06:26 -07:00
Devon Carew
bb1da703a6
return exit codes on failures
2015-10-17 11:50:23 -07:00
Adam Barth
047038b95a
Support non-rooted Android devices
...
Now we use a debuggable APK and chmod the installation directory to be world
readable/writable.
Fixes https://github.com/flutter/engine/issues/126
2015-10-14 13:57:55 -07:00
Adam Barth
9c4835100b
Handle the case of a non-connected Android device better
...
Previous we dumped a stack trace. Now we produce a more sensible error.
2015-10-12 11:05:09 -07:00
Adam Barth
0e06feee01
Add some print statements to smooth first run
...
This patch adds a couple print statements to explain why the first run of
`flutter start` takes a while. (We need to download the APK and install it on
the device.)
2015-10-12 01:33:03 -07:00
Adam Barth
8df5e9f738
Polish up some error handling
...
This patch improves the error handling for several arbitrary issues I
encountered while experimenting with the tool this evening.
2015-10-12 00:55:13 -07:00
Adam Barth
bdd20661d7
Teach sky_tools about prebuilt artifacts
...
This patch makes `flutter start` work without a clone of the engine git
repository. Making this work pulled a relatively large refactor of how the
commands interact with application packages and devices. Now commands that want
to interact with application packages or devices inherit from a common base
class that holds stores of those objects as members.
In production, the commands download and connect to devices based on the build
configuration stored on the FlutterCommandRunner. In testing, these fields are
used to mock out the real application package and devices.
2015-10-12 00:03:55 -07:00
Ian Fischer
a6a3f212ee
IOSSimulator implementation.
...
Also fixes some minor bugs with iOS and Android interactions.
2015-10-11 19:36:06 -07:00
Ian Fischer
ae32410995
Get iOS devices working on Mac if you specify sky-src-path.
2015-10-09 16:23:33 -07:00
Ian Fischer
f4ec459c23
Add support for log commands on iOS.
2015-10-08 15:10:25 -07:00
Ian Fischer
43aaf50e05
Merge pull request #78 from iansf/ios_start
...
Add implementation of start and stop commands for iOS.
2015-10-07 15:45:34 -07:00
Ian Fischer
844678ddce
Add implementation of start and stop commands for iOS.
2015-10-07 15:44:02 -07:00
Ian Fischer
72cc4d6fde
Don’t give a scary error about not being able to run on Android if there’s no Android device connected.
2015-10-07 15:29:13 -07:00
Ian Fischer
7990e874df
Just log, don’t exit when the user is missing access to a command. Prevents inappropriately-failing tests.
2015-10-06 16:19:06 -07:00
Ian Fischer
12192d00c1
Beginning implementation of IOSDevice. Implements list and install.
...
Also update tests to be compatible with the presence of iOS and add tests for list and install.
2015-10-06 11:46:29 -07:00
Ian Fischer
d07ca92995
Basic sky_tools list command, Android implementation, and test.
2015-10-01 08:43:57 -07:00
Ian Fischer
b8085cd033
Add sky_tools trace command, Android implementation, and basic test.
2015-09-30 14:02:29 -07:00
Ian Fischer
00bed774ce
Add listen command and basic test, and don’t do unnecessary repeated work when listening or poking the android server.
2015-09-29 17:10:47 -07:00
Ian Fischer
a6635489f5
Add optional prefix to runCommandAndStreamOutput for logs commands.
2015-09-29 14:15:29 -07:00
Ian Fischer
5e11889160
Add logs command and android implementation.
2015-09-29 11:51:33 -07:00
Ian Fischer
61bfe5ce84
Unify process_wrapper and process to have the same api and logging styles.
...
Also add unchecked runSync wrapper and use it in places where command failures don’t matter.
2015-09-29 10:30:13 -07:00
Ian Fischer
8cac55a4e2
Add sky_tools start command and associated android support.
2015-09-29 09:54:10 -07:00
Ian Fischer
fa59233746
Add stop command and supporting Android support.
2015-09-25 16:16:19 -07:00
Ian Fischer
cae053c353
Refactor all the commands to be Commands from the Args package. Also use CommandRunner for the top-level command.
2015-09-24 15:51:23 -07:00
Ian Fischer
0cc758d24e
Set up plumbing for getting relevant paths to the right places without too much global state.
...
`dart bin/sky_tools.dart --debug --sky-src-path=/path/to/sky/src/ install` now works.
2015-09-22 11:17:39 -07:00
Adam Barth
76a51409c5
Remove stray }
...
This stray line was causing an analyzer error.
2015-09-16 14:35:09 -07:00
Ian Fischer
c5ea40980a
Most of the infrastructure needed to install an APK on Android.
2015-09-16 12:56:10 -07:00
Ian Fischer
b72d67a8fe
Private setup methods for AndroidDevice.
2015-09-15 17:20:49 -07:00
Ian Fischer
ab441685e2
Test install command
2015-09-11 15:26:55 -07:00
Ian Fischer
81746e980c
Initial sketch of install command and what devices look like.
2015-09-11 12:44:47 -07:00