OLD | NEW |
(Empty) | |
| 1 <h1>Before You Start</h1> |
| 2 |
| 3 |
| 4 <p> |
| 5 This documentation tells you how to write packaged apps. |
| 6 All developers, however, should know that the new APIs |
| 7 for packaged apps are being released as a developer preview. |
| 8 This means that they are evolving daily, |
| 9 and anything you read now might be different in the near future. |
| 10 Please keep up to date with the API reference and documentation. |
| 11 If you hit any stumbling blocks, |
| 12 feedback is welcome at |
| 13 <a href="http://groups.google.com/a/chromium.org/group/chromium-apps">#chromium-
apps</a> |
| 14 </p> |
| 15 |
| 16 <p class="caution"> |
| 17 <b>Note:</b> |
| 18 If you've written packaged apps before, |
| 19 your <a href="http://code.google.com/chrome/extensions/apps.html">legacy package
d apps</a> |
| 20 will still work the way they always have, |
| 21 but they won't have access to the new APIs. |
| 22 </p> |
| 23 |
| 24 <h2 id="start">Where to start</h2> |
| 25 |
| 26 <p> |
| 27 The <a href="about_apps.html">Getting Started</a> guide is a great place to star
t. |
| 28 It's fast reading; shouldn't take more than 10 minutes to read all three docs. |
| 29 After the Getting Started guide, |
| 30 decide what's most relevant to you. |
| 31 The <a href="app_lifecycle.html">Fundamentals</a> guide covers |
| 32 the details of the app and data lifecycle, |
| 33 or learn more about good app design |
| 34 by reading <a href="app_frameworks.html">MVC Architecture</a>. |
| 35 We've also got lots of sample code in our repository |
| 36 that is linked to directly from the documentation. |
| 37 </p> |
| 38 |
| 39 <p> |
| 40 If you're familiar with the Chrome extension docs, |
| 41 then the Reference docs should seem familiar. |
| 42 Packaged apps and extensions share a common platform. |
| 43 They can access many of the same APIs, |
| 44 they have the same manifest and permissions format. |
| 45 Many of the reference docs are shared; |
| 46 we've filtered accessibility to docs that aren't shared. |
| 47 </p> |
| 48 |
| 49 <p class="backtotop"><a href="#top">Back to top</a></p> |
OLD | NEW |