Home | History | Annotate | Download | only in targetprep

Lines Matching refs:directory

82             throw new TargetSetupError("Failed to find a valid test zip directory.",
90 * Install all apks found in a given directory.
92 * @param directory {@link File} directory to install from.
97 void installApksRecursively(File directory, ITestDevice device)
99 if (directory == null || !directory.isDirectory()) {
100 throw new TargetSetupError("Invalid test zip directory!", device.getDeviceDescriptor());
102 CLog.d("Installing all apks found in dir %s ...", directory.getAbsolutePath());
103 File[] files = directory.listFiles();