diff --git a/docs/html/sdk/index.jd b/docs/html/sdk/index.jd index 0038facb86a63..df978554ae1f6 100644 --- a/docs/html/sdk/index.jd +++ b/docs/html/sdk/index.jd @@ -2,21 +2,21 @@ page.title=Android SDK header.hide=1 page.metaDescription=Download the official Android SDK to develop apps for Android-powered devices. -sdk.win_installer=installer_r20-windows.exe -sdk.win_installer_bytes=70497095 -sdk.win_installer_checksum=0f25321554e2f88b247320d6a3bc1a7a +sdk.win_installer=installer_r20.0.1-windows.exe +sdk.win_installer_bytes=70486979 +sdk.win_installer_checksum=a8df28a29c7b8598e4c50f363692256d -sdk.win_download=android-sdk_r20-windows.zip -sdk.win_bytes=90353014 -sdk.win_checksum=b62b0f80f559c0ac670e9f058a21f0df +sdk.win_download=android-sdk_r20.0.1-windows.zip +sdk.win_bytes=90370975 +sdk.win_checksum=5774f536892036f87d3bf6502862cea5 -sdk.mac_download=android-sdk_r20-macosx.zip -sdk.mac_bytes=58203018 -sdk.mac_checksum=b6b6035ccec55ec2aa057438eb1db1f4 +sdk.mac_download=android-sdk_r20.0.1-macosx.zip +sdk.mac_bytes=58217336 +sdk.mac_checksum=cc132d04bc551b23b0c507cf5943df57 -sdk.linux_download=android-sdk_r20-linux.tgz -sdk.linux_bytes=82589455 -sdk.linux_checksum=22a81cf1d4a951c62f71a8758290e9bb +sdk.linux_download=android-sdk_r20.0.1-linux.tgz +sdk.linux_bytes=82607616 +sdk.linux_checksum=cd7176831087f53e46123dd91551be32 @jd:body diff --git a/docs/html/sdk/installing/installing-adt.jd b/docs/html/sdk/installing/installing-adt.jd index b276da407f93a..60f67a2939ce4 100644 --- a/docs/html/sdk/installing/installing-adt.jd +++ b/docs/html/sdk/installing/installing-adt.jd @@ -1,9 +1,9 @@ page.title=Installing the Eclipse Plugin walkthru=1 -adt.zip.version=20.0.0 -adt.zip.download=ADT-20.0.0.zip -adt.zip.bytes=12387628 -adt.zip.checksum=ea0fc934af3b6b89097f0146c7822ed0 +adt.zip.version=20.0.1 +adt.zip.download=ADT-20.0.1.zip +adt.zip.bytes=12387574 +adt.zip.checksum=6ebd7f8566bfd2cd031b07d56d49542d @jd:body diff --git a/docs/html/tools/revisions/platforms.jd b/docs/html/tools/revisions/platforms.jd index db0cbab2ae6e3..6163fbc52b1ce 100644 --- a/docs/html/tools/revisions/platforms.jd +++ b/docs/html/tools/revisions/platforms.jd @@ -36,6 +36,107 @@ have installed, refer to the "Installed Packages" listing in the Android SDK Man + +
Important: To download the new Android +4.0.x system components from the Android SDK Manager, you must first update the +SDK tools to revision 20 or later and restart the Android SDK Manager. If you do not, +the Android 4.1 system components will not be available for download.
+ +
+
Revision 2 (July 2012)
+
Maintenance update. The system version is 4.1.1.
+
+
Revision 1 (June 2012)
+
Initial release. The system version is 4.1.0.
+The downloadable platform includes the following emulator skins:
+ +To test your application on an emulator that represents the Nexus 7 tablet device, you can create an AVD with +the new WXGA800-7in skin. For best performance, make sure to enable graphics acceleration in the +emulator configuration.
+ + + + + + + + + + + + + +
-
Revision 3 (March 2012)
To test your application on an emulator that represents the latest Android device, you can create -an AVD with the new WXGA720 skin (it's an xhdpi, normal screen device). Note that the emulator -currently doesn't support the new on-screen navigation bar for devices without hardware navigation -buttons, so when using this skin, you must use keyboard keys Home for the Home button, -ESC for the Back button, and F2 or Page-up for the Menu button.
- -However, due to performance issues in the emulator when running high-resolution screens such as -the one for the WXGA720 skin, we recommend that you primarily use the traditional WVGA800 skin -(hdpi, normal screen) to test your application.
diff --git a/docs/html/tools/sdk/eclipse-adt.jd b/docs/html/tools/sdk/eclipse-adt.jd index aa21423fad9c5..947e463d6dd46 100644 --- a/docs/html/tools/sdk/eclipse-adt.jd +++ b/docs/html/tools/sdk/eclipse-adt.jd @@ -95,7 +95,47 @@ padding: 5px 0 0;
+ADT 20.0.1 (June 2012)
+
ADT 20.0.0 (June 2012)
The NDK is a toolset that allows you to implement parts of your app using native-code languages such as C and C++. For certain types of apps, this can be helpful so that you may reuse existing code libraries written in these @@ -62,12 +62,12 @@ page.title=Android NDK
The sections below provide information and notes about successive releases of @@ -115,12 +115,204 @@ padding: 5px 0 0;
+ Android NDK, Revision 8b (July 2012)
+
+ The main features of this release are a new GNU Compiler Collection (GCC) 4.6 toolchain and +GNU Debugger (GDB) 7.3.x which adds debugging support for the Android 4.1 (API Level 16) system +image.
+ ++LOCAL_DISABLE_NO_EXECUTE=true # disable "--noexecstack" and "-z noexecstack" +DISABLE_RELRO=true # disable "-z relro" and "-z now"
See {@code docs/ANDROID-MK.html} for more details.
+
+static const struct {
+ int32_t namesz; /* = 4, sizeof ("GNU") */
+ int32_t descsz; /* = 6 * sizeof(int32_t) */
+ int32_t type; /* = 1 */
+ char name[sizeof "GNU"]; /* = "GNU" */
+ int32_t os; /* = 0 */
+ int32_t major; /* = 2 */
+ int32_t minor; /* = 6 */
+ int32_t teeny; /* = 15 */
+ int32_t os_variant; /* = 1 */
+ int32_t android_api; /* = 3, 4, 5, 8, 9, 14 */
+}
+ This release of the NDK includes support for MIPS ABI and a few additional fixes.
- +.apk file.native-plasma and native-activity,
+
+ native-plasma and native-activity,
to demonstrate how to write a native activity.Installing the NDK on your development computer is straightforward and involves extracting the NDK from its download package.
@@ -1339,7 +1531,7 @@ Software RequirementsYou are now ready to start working with the NDK.
- +Once you've installed the NDK successfully, take a few minutes to read the documentation @@ -1402,13 +1594,13 @@ included with the NDK package.
to use them or any other framework API, you can still write JNI code to do so. - - - - - + + + + +The NDK contains the APIs, documentation, and sample applications that help you write your native code. Specifically:
@@ -1478,9 +1670,9 @@ information)Additionally, the package includes detailed information about the "bionic" C library provided @@ -1562,10 +1754,10 @@ information) offers. - - - - + + + +
The NDK includes sample applications that illustrate how to use native code in your Android @@ -1624,10 +1816,10 @@ information)
android tool to create the build file
for each of the sample projects at <ndk>/samples/<name>/.
Then set up an AVD, if necessary, build your project in the usual way, and run it in the
- emulator.For more information about developing with the Android SDK tools and what you need to do to create, build, and run your applications, see the Overview diff --git a/docs/html/tools/sdk/tools-notes.jd b/docs/html/tools/sdk/tools-notes.jd index 14d1aa48606ec..039c4b5b60951 100644 --- a/docs/html/tools/sdk/tools-notes.jd +++ b/docs/html/tools/sdk/tools-notes.jd @@ -24,51 +24,51 @@ Tools you are using, refer to the "Installed Packages" listing in the Android SD
For a summary of all known issues in SDK Tools, see http://tools.android.com/knownissues.
- - -
- SDK Tools, Revision 20 (June 2012)
+
+
SDK Tools, Revision 20.0.1 (July 2012)
+
+
SDK Tools, Revision 20 (June 2012)
+
- SDK Tools, Revision 19 (April 2012)
+
+
SDK Tools, Revision 19 (April 2012)
+
Note: This update of SDK Tools is only available through the Android SDK Manager. Use this tool to download and install this update.
@@ -171,13 +171,13 @@ acceleration.
- SDK Tools, Revision 18 (April 2012)
+
+
SDK Tools, Revision 18 (April 2012)
+
Important: To download the new Android 4.0 system components from the Android SDK Manager, you must first update the SDK tools to revision 14 or later and restart the Android SDK Manager. If you do not, @@ -213,13 +213,13 @@ in some cases.
- SDK Tools, Revision 17 (March 2012)
+
+
SDK Tools, Revision 17 (March 2012)
+
Important: To download the new Android 4.0 system components from the Android SDK Manager, you must first update the SDK tools to revision 14 or later and restart the Android SDK Manager. If you do not, @@ -317,13 +317,13 @@ ignore attribute. (
- SDK Tools, Revision 16 (December 2011)
+
+
SDK Tools, Revision 16 (December 2011)
+
Important: To download the new Android 4.0 system components from the Android SDK Manager, you must first update the SDK tools to revision 14 or later and restart the Android SDK Manager. If you do not, @@ -367,13 +367,13 @@ ignore attribute. (
- SDK Tools, Revision 15 (October 2011)
+
+
SDK Tools, Revision 15 (October 2011)
+
Important: To download the new Android 4.0 system components from the Android SDK Manager, you must first update the SDK tools to revision 14 or later and restart the Android SDK Manager. If you do not, @@ -415,13 +415,13 @@ ignore attribute. (
- SDK Tools, Revision 14 (October 2011)
+
+
SDK Tools, Revision 14 (October 2011)
+
Important: To download the new Android 4.0 system components from the Android SDK Manager, you must first update the SDK tools to revision 14 and restart the Android SDK Manager. If you do not, @@ -470,12 +470,13 @@ site.
-SDK Tools, Revision 13 (September 2011)
-
+
SDK Tools, Revision 13 (September 2011)
+
-SDK Tools, Revision 12 (July 2011)
-
+
SDK Tools, Revision 12 (July 2011)
+
-SDK Tools, Revision 11 (May 2011)
-
+
SDK Tools, Revision 11 (May 2011)
+
-SDK Tools, Revision 10 (February 2011)
-
+
SDK Tools, Revision 10 (February 2011)
+
-SDK Tools, Revision 9 (January 2011)
-
+
SDK Tools, Revision 9 (January 2011)
+
-SDK Tools, Revision 8 (December 2010)
-
+
SDK Tools, Revision 8 (December 2010)
+
-SDK Tools, Revision 7 (September 2010)
-
+
SDK Tools, Revision 7 (September 2010)
+
-SDK Tools, Revision 6 (May 2010)
-
+
SDK Tools, Revision 6 (May 2010)
+
-SDK Tools, Revision 5 (March 2010)
-
+
SDK Tools, Revision 5 (March 2010)
+
-SDK Tools, Revision 4 (December 2009)
-
+
SDK Tools, Revision 4 (December 2009)
+
SDK Tools r4 is compatible with ADT 0.9.5 and later, but not @@ -866,12 +879,13 @@ skin name specified.
-SDK Tools, Revision 3 (October 2009)
-
+
SDK Tools, Revision 3 (October 2009)
+
SDK Tools r3 is compatible with ADT 0.9.4 and later, but not