| OLD | NEW |
| 1 Contributing | 1 Contributing |
| 2 ============ | 2 ============ |
| 3 | 3 |
| 4 [sky_sdk](https://github.com/domokit/sky_sdk) is generated from the | 4 [sky_sdk](https://github.com/domokit/sky_sdk) is generated from the |
| 5 [mojo repository](https://github.com/domokit/mojo) using | 5 [mojo repository](https://github.com/domokit/mojo) using |
| 6 [deploy_sdk.py](https://github.com/domokit/mojo/blob/master/sky/tools/deploy_sdk
.py) | 6 [deploy_sdk.py](https://github.com/domokit/mojo/blob/master/sky/tools/deploy_sdk
.py) |
| 7 Static files (including this README.md) are located under | 7 Static files (including this README.md) are located under |
| 8 [sky/sdk](https://github.com/domokit/mojo/tree/master/sky/sdk). Pull | 8 [sky/sdk](https://github.com/domokit/mojo/tree/master/sky/sdk). Pull |
| 9 requests and issue reports are glady accepted at the | 9 requests and issue reports are glady accepted at the |
| 10 [mojo repository](https://github.com/domokit/mojo)! | 10 [mojo repository](https://github.com/domokit/mojo)! |
| (...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 209 written to use the `network_service` remains portable to any platform | 209 written to use the `network_service` remains portable to any platform |
| 210 (iOS, Android, etc.) by simply providing a 'natively' written `network_service`. | 210 (iOS, Android, etc.) by simply providing a 'natively' written `network_service`. |
| 211 | 211 |
| 212 Embedders of the Sky Engine and consumers of the Sky Framework can use this | 212 Embedders of the Sky Engine and consumers of the Sky Framework can use this |
| 213 same mechanism to expose not only existing services like the | 213 same mechanism to expose not only existing services like the |
| 214 [Keyboard](https://github.com/domokit/mojo/blob/master/mojo/services/keyboard/pu
blic/interfaces/keyboard.mojom) | 214 [Keyboard](https://github.com/domokit/mojo/blob/master/mojo/services/keyboard/pu
blic/interfaces/keyboard.mojom) |
| 215 service to allow Sky Framework Dart code to interface with the underlying | 215 service to allow Sky Framework Dart code to interface with the underlying |
| 216 platform's Keyboard, but also to expose any additional non-Dart business logic | 216 platform's Keyboard, but also to expose any additional non-Dart business logic |
| 217 to Sky/Dart UI code. | 217 to Sky/Dart UI code. |
| 218 | 218 |
| 219 As and example, [SkyApplication](https://github.com/domokit/mojo/blob/master/sky
/shell/org/domokit/sky/shell/SkyApplication.java) | 219 As an example, [SkyApplication](https://github.com/domokit/mojo/blob/master/sky/
shell/org/domokit/sky/shell/SkyApplication.java) |
| 220 exposes a mojo `network_service` (required by Sky Engine C++ code) | 220 exposes a mojo `network_service` (required by Sky Engine C++ code) |
| 221 [SkyDemoApplication](https://github.com/domokit/mojo/blob/master/sky/apk/demo/or
g/domokit/sky/demo/SkyDemoApplication.java) | 221 [SkyDemoApplication](https://github.com/domokit/mojo/blob/master/sky/apk/demo/or
g/domokit/sky/demo/SkyDemoApplication.java) |
| 222 additionally exposes `keyboard_service` and `sensor_service` for use by the Sky | 222 additionally exposes `keyboard_service` and `sensor_service` for use by the Sky |
| 223 Framework from Dart. | 223 Framework from Dart. |
| OLD | NEW |