Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8a4c53a7 authored by Scott Main's avatar Scott Main Committed by The Android Open Source Project
Browse files

AI 147732: fix broken links

  BUG=1810005

Automated import of CL 147732
parent b8670191
Loading
Loading
Loading
Loading
+3 −5
Original line number Diff line number Diff line
@@ -30,11 +30,9 @@ import android.os.Bundle;
 *
 * <p>Extend this class and override one or more of the {@link #onUpdate}, {@link #onDeleted},
 * {@link #onEnabled} or {@link #onDisabled} methods to implement your own AppWidget functionality.
 *
 * <h3>Sample Code</h3>
 * For an example of how to write a AppWidget provider, see the
 * <a href="{@toroot}reference/android/appwidget/package-descr.html#providers">android.appwidget
 * package overview</a>.
 * </p>
 * <p>For an example of how to write a AppWidget provider, see the
 * <a href="{@docRoot}guide/topics/appwidgets/index.html#Providers">AppWidgets</a> documentation.</p>
 */
public class AppWidgetProvider extends BroadcastReceiver {
    /**
+2 −2
Original line number Diff line number Diff line
@@ -188,8 +188,8 @@ id:2
when launching your application on an emulator.</p>

<p>To learn more about creating and managing AVDs, please read the 
<a href="{@docRoot}guide/developing/index.html#avd">Developing Overview</a> 
and <a href="{@docRoot}guide/tools/android.html">android Tool</a> documentation.</p>
<a href="{@docRoot}guide/developing/tools/avd.html">Android Virtual Devices</a>
documentation.</p>


<h3 id="RunningYourApplication">Running your application</h3>
+3 −3
Original line number Diff line number Diff line
@@ -19,7 +19,7 @@ page.title=Developing In Other IDEs

  <h2>See also</h2>
  <ol>
    <li><a href="{@docRoot}guide/developing/tools/android.html">android Tool</a></li>
    <li><a href="{@docRoot}guide/developing/tools/othertools.html#android">android Tool</a></li>
    <li><a href="{@docRoot}guide/developing/tools/emulator.html">Android Emulator</a></li>
    <li><a href="{@docRoot}guide/developing/tools/adb.html">Android Debug Bridge</a></li>
  </ol>
@@ -43,7 +43,7 @@ package it for distribution. This document is your guide to using these tools.</
familiarity with the following Android SDK tools:</p>

<dl>
  <dt><a href="{@docRoot}guide/developing/tools/android.html">android</a></dt>
  <dt><a href="{@docRoot}guide/developing/tools/othertools.html#android">android</a></dt>
    <dd>To create/update Android projects and to create/move/delete AVDs.</dd>
  <dt><a href="{@docRoot}guide/developing/tools/emulator.html">Android Emulator</a></dt>
    <dd>To run your Android applications on an emulated Android platform.</dd>
@@ -377,7 +377,7 @@ multiple emulators.</p>

<p>For more information on the tools used above, please see the following documents:</p>
<ul>
  <li><a href="{@docRoot}guide/developing/tools/android.html">android Tool</a></li>
  <li><a href="{@docRoot}guide/developing/tools/othertools.html#android">android Tool</a></li>
  <li><a href="{@docRoot}guide/developing/tools/emulator.html">Android Emulator</a></li>
  <li><a href="{@docRoot}guide/developing/tools/adb.html">Android Debug Bridge</a> (ADB)</li>
</ul>
+45 −0
Original line number Diff line number Diff line
page.title=System Requirements
sdk.version=1.0_r1


@jd:body

<p>The sections below describe the system and software requirements for 
developing Android applications using the Android SDK tools included in Android 1.0 SDK, Release 1. </p>

<h2>System and Software Requirements</h2>
<p>The following systems and development environments are supported by this SDK.</p>

<h4>Supported Operating Systems:</h4>
<ul>
  <li>Windows XP or Vista</li>
  <li>Mac OS X 10.4.8 or later (x86 only)</li>
  <li>Linux (tested on Linux Ubuntu Dapper Drake)</li>
</ul>

<h4>Supported Development Environments:</h4>
<ul>
  <li>Eclipse IDE
    <ul>
      <li><a href="http://www.eclipse.org/downloads/">Eclipse</a> 3.3 (Europa), 3.4 (Ganymede)
        <ul>
        <li>Eclipse <a href="http://www.eclipse.org/jdt">JDT</a> plugin (included in most Eclipse IDE packages) </li>
        <li><a href="http://www.eclipse.org/webtools">WST</a> (optional, but needed for the Android Editors feature; included in <a href="http://www.eclipse.org/downloads/moreinfo/compare.php">most Eclipse IDE packages</a>)</li>
        </ul>
      </li>     
      <li><a href="http://java.sun.com/javase/downloads/index.jsp">JDK 5 or JDK 6</a> (JRE alone is not sufficient)</li>
      <li><a href="installing.html#installingplugin">Android Development Tools plugin</a> (optional)</li>
      <li><strong>Not</strong> compatible with Gnu Compiler for Java (gcj)</li>
    </ul>
  </li>
  <li>Other development environments or IDEs
    <ul>
      <li><a href="http://java.sun.com/javase/downloads/index.jsp">JDK 5 or JDK 6</a> (JRE alone is not sufficient)</li>
      <li><a href="http://ant.apache.org/">Apache Ant</a> 1.6.5 or later for Linux and Mac, 1.7 or later for Windows</li>
      <li><strong>Not</strong> compatible with Gnu Compiler for Java (gcj)</li>
    </ul>
  </li>
</ul>

<p class="note"><strong>Note:</strong> If JDK is already installed on your development computer, please take a moment to make sure that it meets the version requirements listed above. In
particular, note that some Linux distributions may include JDK 1.4 or Gnu Compiler for Java, both of which are not supported for Android development. </p>
 No newline at end of file
+1 −1
Original line number Diff line number Diff line
@@ -242,7 +242,7 @@ href="{@docRoot}reference/index.html">Reference</a> tab</li>
<p><strong>Explore the SDK</strong></p>
<ul>
<li>Get an overview of the <a
href="{@docRoot}guide/development/tools/index.html">development
href="{@docRoot}guide/developing/tools/index.html">development
tools</a> that are available to you</li>
<li>Read the overviews of how to develop <a
href="{@docRoot}guide/developing/eclipse-adt.html">in Eclipse/ADT</a> or
Loading