| 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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 | 76 |
| 77 1. Install the Dart SDK: | 77 1. Install the Dart SDK: |
| 78 - https://www.dartlang.org/tools/download.html | 78 - https://www.dartlang.org/tools/download.html |
| 79 | 79 |
| 80 2. Install the ``adb`` tool from the Android SDK: | 80 2. Install the ``adb`` tool from the Android SDK: |
| 81 - https://developer.android.com/sdk/installing/index.html | 81 - https://developer.android.com/sdk/installing/index.html |
| 82 | 82 |
| 83 3. Install the Sky SDK: | 83 3. Install the Sky SDK: |
| 84 - ``git clone https://github.com/domokit/sky_sdk.git`` | 84 - ``git clone https://github.com/domokit/sky_sdk.git`` |
| 85 | 85 |
| 86 4. Ensure sure $DART_SDK is set to the path of your Dart SDK and 'adb' | 86 4. Ensure that $DART_SDK is set to the path of your Dart SDK and 'adb' |
| 87 (inside 'platform-tools' in the android sdk) is in your $PATH. | 87 (inside 'platform-tools' in the android sdk) is in your $PATH. |
| 88 | 88 |
| 89 Set up your device | 89 Set up your device |
| 90 ------------------ | 90 ------------------ |
| 91 | 91 |
| 92 Currently Sky requires an Android device running the Lollipop (or newer) version | 92 Currently Sky requires an Android device running the Lollipop (or newer) version |
| 93 of the Android operating system. | 93 of the Android operating system. |
| 94 | 94 |
| 95 1. Enable developer mode on your device by visiting ``Settings > About phone`` | 95 1. Enable developer mode on your device by visiting ``Settings > About phone`` |
| 96 and tapping the ``Build number`` field five times. | 96 and tapping the ``Build number`` field five times. |
| 97 | 97 |
| 98 2. Enable ``USB debugging`` in ``Settings > Developer options``. | 98 2. Enable ``USB debugging`` in ``Settings > Developer options``. |
| 99 | 99 |
| 100 3. Using a USB cable, plug your phone into your computer. If prompted on your | 100 3. Using a USB cable, plug your phone into your computer. If prompted on your |
| 101 device, authorize your computer to access your device. | 101 device, authorize your computer to access your device. |
| 102 | 102 |
| 103 Running a Sky application | 103 Running a Sky application |
| 104 ------------------------- | 104 ------------------------- |
| 105 | 105 |
| 106 1. ``packages/sky/lib/sky_tool --install examples/stocks/main.sky`` | 106 1. ``packages/sky/lib/sky_tool --install examples/stocks/main.sky`` |
| 107 The --install flag is only necessary the first time to install SkyDemo.apk. | 107 The --install flag is only necessary the first time to install SkyDemo.apk. |
| 108 | 108 |
| 109 2. Use ``adb logcat`` to view any errors or Dart print() output from the app. | 109 2. Use ``adb logcat`` to view any errors or Dart print() output from the app. |
| OLD | NEW |