Lines Matching full:libraries
62 * the libraries. This includes the default android.jar from the resolved target but also optional
63 * libraries provided by the target (if any, when the target is an add-on).</li>
284 // look for referenced libraries.
319 IOptionalLibrary[] libraries = androidTarget.getOptionalLibraries();
320 if (libraries != null) {
322 for (IOptionalLibrary library : libraries) {
455 ArrayList<File> libraries = getProjectLibraries(antProject);
457 if (libraries.size() > 0) {
458 System.out.println("------------------\nOrdered libraries:");
460 for (File library : libraries) {
515 // even with no libraries, always setup these so that various tasks in Ant don't complain
534 ArrayList<File> libraries = new ArrayList<File>();
544 // process the libraries in case they depend on other libraries.
545 resolveFullLibraryDependencies(topLevelLibraries, libraries);
547 return libraries;
551 * Resolves a given list of libraries, finds out if they depend on other libraries, and
554 * @param inLibraries the libraries to resolve
555 * @param outLibraries where to store all the libraries.
558 // loop in the inverse order to resolve dependencies on the libraries, so that if a library
559 // is required by two higher level libraries it can be inserted in the correct place
567 // get its libraries
574 // resolve the dependencies for those libraries
595 ArrayList<File> libraries = new ArrayList<File>();
619 if (libraries.contains(library) == false) {
623 libraries.add(library);
630 return libraries;