| OLD | NEW |
| 1 Sky | 1 Sky |
| 2 === | 2 === |
| 3 | 3 |
| 4 Sky is an experimental, high-performance UI framework for mobile apps. Sky helps | 4 Sky is an experimental, high-performance UI framework for mobile apps. Sky helps |
| 5 you create apps with beautiful user interfaces and high-quality interactive | 5 you create apps with beautiful user interfaces and high-quality interactive |
| 6 design that run smoothly at 120 Hz. | 6 design that run smoothly at 120 Hz. |
| 7 | 7 |
| 8 Sky consists of two components: | 8 Sky consists of two components: |
| 9 | 9 |
| 10 1. *The Sky engine.* The engine is the core of the system. Written in C++, the | 10 1. *The Sky engine.* The engine is the core of the system. Written in C++, the |
| (...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 126 | 126 |
| 127 3. Using a USB cable, plug your phone into your computer. If prompted on your | 127 3. Using a USB cable, plug your phone into your computer. If prompted on your |
| 128 device, authorize your computer to access your device. | 128 device, authorize your computer to access your device. |
| 129 | 129 |
| 130 Running a Sky application | 130 Running a Sky application |
| 131 ------------------------- | 131 ------------------------- |
| 132 | 132 |
| 133 The `sky` pub package includes a `sky_tool` script to assist in running | 133 The `sky` pub package includes a `sky_tool` script to assist in running |
| 134 Sky applications inside the `SkyDemo.apk` harness. | 134 Sky applications inside the `SkyDemo.apk` harness. |
| 135 | 135 |
| 136 1. ``packages/sky/lib/sky_tool --install examples/stocks/main.sky`` | 136 1. ``packages/sky/lib/sky_tool start --install examples/stocks/main.sky`` |
| 137 The --install flag is only necessary to install SkyDemo.apk if not already | 137 The --install flag is only necessary to install SkyDemo.apk if not already |
| 138 installed from the Google Play store. | 138 installed from the Google Play store. |
| 139 | 139 |
| 140 2. Use ``adb logcat`` to view any errors or Dart print() output from the app. | 140 2. Use ``adb logcat`` to view any errors or Dart print() output from the app. |
| 141 | 141 |
| 142 Building a standalone MyApp | 142 Building a standalone MyApp |
| 143 --------------------------- | 143 --------------------------- |
| 144 | 144 |
| 145 Although it is possible to bundle the Sky Engine in your own app (instead of | 145 Although it is possible to bundle the Sky Engine in your own app (instead of |
| 146 running your code inside SkyDemo.apk), right now doing so is difficult. | 146 running your code inside SkyDemo.apk), right now doing so is difficult. |
| 147 | 147 |
| 148 There is one example of doing so if you're feeling brave: | 148 There is one example of doing so if you're feeling brave: |
| 149 https://github.com/domokit/mojo/tree/master/sky/apk/stocks | 149 https://github.com/domokit/mojo/tree/master/sky/apk/stocks |
| 150 | 150 |
| 151 Eventually we plan to make this much easier and support platforms other than | 151 Eventually we plan to make this much easier and support platforms other than |
| 152 Android, but that work is yet in progress. | 152 Android, but that work is yet in progress. |
| OLD | NEW |