Home | History | Annotate | Download | only in targetprep

Lines Matching defs:apkFile

107             for (VersionedFile apkFile : appBuild.getAppPackageFiles()) {
109 AaptParser aaptParser = doAaptParse(apkFile.getFile());
113 apkFile.getFile().getName()), device.getDeviceDescriptor());
118 apkFile.toString(), device.getSerialNumber(),
123 String result = device.installPackage(apkFile.getFile(), true,
131 apkFile.getFile().getName(), device.getSerialNumber(), result),
135 addPackageNameToUninstall(apkFile.getFile(), device);
155 AaptParser doAaptParse(File apkFile) {
156 return AaptParser.parse(apkFile);
159 private void addPackageNameToUninstall(File apkFile, ITestDevice device)
161 AaptParser aaptParser = doAaptParse(apkFile);
164 apkFile.getAbsolutePath()), device.getDeviceDescriptor());
168 "Failed to find package name for '%s' using aapt", apkFile.getAbsolutePath()),