diff --git a/docs/html/sdk/installing/index.jd b/docs/html/sdk/installing/index.jd index a48de351587dc..d8f6365888073 100644 --- a/docs/html/sdk/installing/index.jd +++ b/docs/html/sdk/installing/index.jd @@ -25,52 +25,6 @@ p.paging-links { - -
The Eclipse ADT Bundle provides everything you need to start developing apps, including -the Android SDK tools and a version of the Eclipse IDE with built-in ADT -(Android Developer Tools) to streamline your Android app development.
- -If you didn't download the Eclipse ADT bundle, go download the Eclipse ADT bundle now, or switch to the -Android Studio -install or stand-alone SDK Tools -install instructions.
- -To set up the ADT Bundle:
-Caution: Do not move any of the files or directories -from the {@code adt-bundle-<os_platform>} directory. If you move the {@code eclipse/} -or {@code sdk/} directory, ADT will not be able to locate the SDK and you'll -need to manually update the ADT preferences.
-Eclipse with ADT is now ready and loaded with the Android developer tools, but there are still -a couple packages you should add to make your Android SDK complete.
- - - - -If you didn't download the SDK tools, go download the SDK now, -or switch to the Eclipse ADT -install or Android Studio +or switch to the Android Studio install instructions.
@@ -374,16 +327,12 @@ Continue: Adding SDK PackagesIf you haven't already, download -the Android SDK.
+the Android SDK bundle for Android Studio or the +stand-alone SDK Tools. -Then, select which SDK package you want to install:
+Then, select which SDK bundle you want to install:
If you're currently using Eclipse with ADT, we recommend you migrate to -Android Studio, a new Android +Android Studio, a new Android development environment powered by IntelliJ IDEA. On top of the capabilities you expect from IntelliJ, Android Studio offers:
diff --git a/docs/html/tools/debugging/debugging-studio.jd b/docs/html/tools/debugging/debugging-studio.jd index b0604572058aa..e1d80b98fe2a0 100644 --- a/docs/html/tools/debugging/debugging-studio.jd +++ b/docs/html/tools/debugging/debugging-studio.jd @@ -28,7 +28,7 @@ page.title=Debugging with Android StudioIf you still wish to get started with the ADT plugin, download and install the Eclipse ADT plugin. diff --git a/docs/html/tools/publishing/app-signing.jd b/docs/html/tools/publishing/app-signing.jd index 6e64392ea3904..4265a636a7b71 100644 --- a/docs/html/tools/publishing/app-signing.jd +++ b/docs/html/tools/publishing/app-signing.jd @@ -206,7 +206,8 @@ more than one), and enter the required information.
You can also specify your signing settings in Gradle configuration files. For more information, -see Signing settings.
+see Configuring Gradle +Builds. diff --git a/docs/html/tools/publishing/preparing.jd b/docs/html/tools/publishing/preparing.jd index b6b10fb4dd886..0b61aa7b3b676 100644 --- a/docs/html/tools/publishing/preparing.jd +++ b/docs/html/tools/publishing/preparing.jd @@ -85,7 +85,7 @@ and it is optimized with the zipalign tool. Android Studio. For example, you can use Android Studio with the Gradle build files to compile, sign, and optimize your application all at once. You can also configure the Gradle build files to do the same when you build from the command line. For more details about using the Gradle build files, see -Building Your Project with Gradle. +the Build System guide.To prepare your application for release you typically perform five main tasks (see figure 2).
Each main task may include one or more smaller tasks depending on how you are releasing your
@@ -306,15 +306,16 @@ application, see Applicatio
.apk file that is signed and optimized. The JDK includes the tools for signing the
.apk file (Keytool and Jarsigner); the Android SDK includes the tools for compiling and
optimizing the .apk file. If you are using Android Studio or you are using
-the Gradle build system from the command line, you can automate the entire build process. See
-Building Your Project with Gradle.
You can use the Gradle build system, integrated with Android Studio to build a release-ready
.apk file that is signed with your private key and optimized. To learn how to setup and
run builds from Android Studio, see
-Building Your Project with Gradle.
The build process assumes that you have a certificate and private key suitable for signing your application. If you do not have a suitable certificate and private key, diff --git a/docs/html/tools/publishing/versioning.jd b/docs/html/tools/publishing/versioning.jd index f56dbc318155a..4af6f306168fd 100644 --- a/docs/html/tools/publishing/versioning.jd +++ b/docs/html/tools/publishing/versioning.jd @@ -96,7 +96,7 @@ value for display to users.
You define both of these version attributes in the
<manifest> element of the manifest file or the Gradle build file. See
-Building Your Project with Gradle.
Here's an example manifest that shows the android:versionCode
and android:versionName attributes in the
@@ -174,4 +174,4 @@ href="{@docRoot}guide/topics/manifest/uses-sdk-element.html"><uses-sdk&
manifest element documentation and the API Levels document. For
Gradle build settings, see
-Building Your Project with Gradle.