page.title=Getting Started with Honeycomb @jd:body
First, you need to set up your development environment with the new SDK Tools and preview platform:
If you have an existing Android SDK directory, simply replace your existing {@code tools/} directory with the one from the new package and add the {@code platform-tools/} directory along side it (at the root of the SDK directory).
Developer Tools now appear in the Available Software window and you can proceed to install the plugin.
Note: Beginning with SDK Tools r8 (the version you've received), the {@code adb} tool is now located in the {@code <sdk>/platform-tools/} directory (instead of in {@code <sdk>/tools/}). Be sure to update your {@code PATH} environment variable and any build/debugging scripts you have.
With your SDK now set up, follow these steps to start developing an application for Honeycomb.
<manifest> <uses-sdk android:minSdkVersion="Froyo" /> ... </manifest>
"Froyo" is a provisional API Level for the Honeycomb release, used only during the preview period. When the APIs are finalized and the SDK is released publicly, you must update this with the appropriate API Level integer.
Note: By providing your {@code <uses-sdk>} element in the manifest file before the {@code <application>} element, your application will automatically apply the new Holographic theme.