diff options
Diffstat (limited to 'docs/html/guide/topics/fundamentals.jd')
-rw-r--r-- | docs/html/guide/topics/fundamentals.jd | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/docs/html/guide/topics/fundamentals.jd b/docs/html/guide/topics/fundamentals.jd index fffc1cd..1658fa6 100644 --- a/docs/html/guide/topics/fundamentals.jd +++ b/docs/html/guide/topics/fundamentals.jd @@ -52,10 +52,9 @@ page.title=Application Fundamentals <p> Android applications are written in the Java programming language. The compiled Java code — along with any data and resource -files required by the application — is bundled by the -<a href="{@docRoot}guide/developing/tools/aapt.html"><code>aapt</code> -tool</a> into an <i>Android package</i>, an archive file -marked by an {@code .apk} suffix. This file is the vehicle +files required by the application — is bundled into an +<i>Android package</i>, an archive file +marked by an {@code .apk} suffix. This file is the vehicle for distributing the application and installing it on mobile devices; it's the file users download to their devices. All the code in a single {@code .apk} file is considered to be one <i>application</i>. @@ -425,7 +424,7 @@ elements for broadcast receivers, and <code><a href="{@docRoot}guide/topics/manifest/provider-element.html"><provider></a></code> elements for content providers. Activities, services, and content providers that are not declared in the manifest are not visible to the system and are -consequently never run. However, broadcast receivers can either be +consequently never run. However, broadcast receivers can either be declared in the manifest, or they can be created dynamically in code (as {@link android.content.BroadcastReceiver} objects) and registered with the system by calling |