Home | History | Annotate | Download | only in text

Lines Matching full:application

7 The Android NDK is a set of tools that allows Android application developers
9 their application packages.
22 The Android VM allows your application's source code to call methods
25 - Your application's source code will declare one or more methods
33 application's .apk. This library must be named according to standard
39 - Your application must explicitly load the library. For example, to load
40 it at application start-up, simply add the following to its source code:
55 application project path, so they will be automatically added to your
92 "Application Not Responding" dialog or deal with the Android application
95 Note however that is is possible to write a sophisticated application in
96 native code with a small "application wrapper" used to start/stop it
137 3. Optional: write `$PROJECT/jni/Application.mk` to describe your
141 (see `docs/APPLICATION-MK.html` for all details).
147 your application needs to your application's root project directory. You
167 Where `$PROJECT` corresponds to the path of your Android application
172 generated application packages, so you don't have to use pseudo-unique
173 names like `com.<mycompany>.<myproject>` as is the case for application
215 ### III.4/ Writing an Application.mk build file (optional):
218 Application.mk file describes your application itself. See the
219 docs/APPLICATION-MK.html document to understand what this file allows you
222 - The exact list of modules required by your application.
234 There are two ways to use an Application.mk:
236 - Place it under `$PROJECT/jni/Application.mk`, and it will be picked
239 - Place it under `$NDK/apps/<name>/Application.mk`, where $NDK
249 Again, see docs/APPLICATION-MK.html for a complete description of its
260 (i.e. shared libraries) required by your application to your application's
268 can be invoked directly from your application project directory (i.e. the
276 development system and application project file to determine what to build.
284 By default, it expects an optional file under $PROJECT/jni/Application.mk,
289 rebuild the full Android application package either through the usual
315 ### IV. Rebuild your application package:
318 Android application package files (.apk) using the normal means, i.e.
334 long as your application is debuggable.
339 1. Ensure your application is debuggable (e.g. set android:debuggable
342 2. Build your application with 'ndk-build', then install it on your
345 3. Launch your application.
347 4. Run 'ndk-gdb' from your application project directory.