Lines Matching full:projects
1 page.title=Managing Projects
9 <li><a href="#ApplicationProjects">Android Projects</a></li>
11 <li><a href="#LibraryProjects">Library Projects</a>
17 <li><a href="#TestProjects">Test Projects</a></li>
24 <p>Projects act as containers for storing things such as code and resource files. The SDK tools
25 expect your projects to follow a specific structure so it can compile and package your
27 with the <code>android</code> tool on the command line. There are three types of projects, and
31 <dt><strong>Android Projects</strong></dt>
38 <dt><strong>Test Projects</strong></dt>
40 <dd>These projects contain code to test your application projects and are built into
43 <dt><strong>Library Projects</strong></dt>
45 <dd>These projects contain shareable Android source code and resources that you can reference
46 in Android projects. This is useful when you have common code that you want to reuse.
47 Library projects cannot be installed onto a device, however, they are
57 <h2 id="ApplicationProjects">Android Projects</h2>
59 <p>Android projects are the projects that eventually get built into an <code>.apk</code> file that you install
196 <dd>The Ant build file for your project. This is only applicable for projects that
201 <h2 id="LibraryProjects">Library Projects</h2>
211 <p>To download the sample applications and run them as projects in
222 source code and resources. Other Android application projects can reference the library project
224 application projects can reference the same library project and any single application project
225 can reference multiple library projects.</p>
233 <p>If you have source code and resources that are common to multiple Android projects, you
235 versions. Here are some common scenarios in which you could make use of library projects:</p>
239 you move the redundant components out of their respective application projects and create a
244 dependent projects, with their different package names, will reference the library project
269 projects, then specify the relative priority of the resources in each library. This lets you
274 <p>Once you have added references to library projects to your Android project,
279 <p>Library projects can reference other library projects and can import an external library
290 project, a given resource ID might be defined in both projects. In this case, the tools select
300 consistent naming scheme that is unique to the project (or is unique across all projects).</p></li>
323 <li> <p><strong>Library projects
349 <p>When you build the dependent application project, library projects are compiled and
363 <h2 id="TestProjects">Test Projects</h2>
365 <p>Test projects contain Android applications that you write using the
374 <dd>Includes your test source files. Test projects do not require an Activity <code>.java</code>
396 Projects have a special <a href=
425 <dd>The Ant build file for your project. This is only applicable for projects that