OLD | NEW |
---|---|
(Empty) | |
1 Sky SDK | |
2 ======= | |
3 | |
4 This document describes an experimental development kit for Sky. We're still | |
5 iterating on Sky heavily, which means the framework and underlying engine are | |
6 both likely to change in incompatible ways several times, but if you're | |
7 interested in trying out the system, this document can help you get started. | |
8 | |
9 Set up your device | |
10 ------------------ | |
11 | |
12 Currently Sky requires an Android device running the Lollipop (or newer) version | |
13 of the Android operating system. | |
14 | |
15 1. Install ``Sky`` on your device by via the Play Store. The Sky app on your | |
eseidel
2015/03/02 22:51:52
We'll probably want a link when we have one.
| |
16 device is capable of displaying applications written using Sky. | |
17 | |
18 2. Enable developer mode on your device by visiting ``Settings > About phone`` | |
19 and tapping the ``Build number`` field five times. | |
eseidel
2015/03/02 22:51:52
We might need to link to an external guide.
| |
20 | |
21 3. Enable ``USB debugging`` in ``Settings > Developer options``. | |
eseidel
2015/03/02 22:51:52
Again, possibly an external guide.
| |
22 | |
23 Set up your computer | |
24 -------------------- | |
25 | |
26 1. Install the ``adb`` tool from the Android SDK. | |
27 - Mac: ``brew install android-platform-tools`` | |
28 - Linux: ``sudo apt-get install android-tools-adb`` | |
29 | |
30 2. Download the Sky framework: | |
31 a. ``curl -O https://domokit.github.io/sky-sdk.tgz`` | |
32 b. ``tar -xvzf sky-sdk.tgz`` | |
33 | |
34 3. Using a USB cable, plug your phone into your computer. If prompted on your | |
35 device, authorize your computer to access your device. | |
36 | |
37 Running a Sky application | |
38 ------------------------- | |
39 | |
40 1. ``/path/to/sky-sdk/run myapp.sky && adb logcat`` | |
eseidel
2015/03/02 22:51:52
Probably a different name than run, but works for
| |
OLD | NEW |