Lines Matching full:application
23 <li><a href="#depAppBuild">Building a dependent application</a></li>
44 an .apk file for installation. You need to create an Android project for any application that you
61 application files, stub files, configuration files and a build file.</p>
75 <li><code>target</code> is the "build target" for your application. It corresponds to an
81 will be used for your .apk filename when you build your application.</li>
108 SDK <code>platform-tools/</code> directory — to send your application to the emulator (discussed
137 <li><code>target</code> is the "build target" for your application. It corresponds to an
156 as you would a new application project. Specifically, you can use the <code>android</code> tool
178 <p>If you want to convert an existing application project to a library project, so that other
180 to the application's <code>project.properties</code> file.</p>
185 just as would a standard Android application. For more information, see the documentation for
194 <application>
198 </application>
214 <p>If you are developing an application and want to include the shared code or resources from a
216 application project's build properties.</p>
227 <p>This command updates the application project's build properties to include a reference to the
255 <p>At build time, the libraries are merged with the application one at a time, starting from the
258 application.</p>
262 <p>In the manifest file of the application project, you must add declarations of all components
263 that the application will use that are imported from a library project. For example, you must
273 application declares the library Activity <code>GameActivity</code> like this:</p>
277 <application>
281 </application>
288 <h3 id="depAppBuild">Building a dependent application</h3>
290 <p>To build an application project that depends on one or more library projects, you can use the
293 compile and merge all libraries referenced by the application as part of
294 compiling the dependent application project. No additional commands or steps are necessary.</p>