Searched defs:apkPath (Results 1 - 2 of 2) sorted by relevance

/cts/tools/host/src/com/android/cts/
H A DTestPackage.java734 * @param apkPath The test package to be installed.
736 private void installAPK(final String apkPath) throws DeviceDisconnectedException, argument
738 Log.d("installAPK " + apkPath + " ...");
739 mDevice.installAPK(apkPath);
741 Log.d("installAPK " + apkPath + " finish");
H A DTestDevice.java320 String apkPath = HostConfig.getInstance().getCaseRepository().getApkPath(DEVICE_SETUP_APK);
321 if (!HostUtils.isFileExist(apkPath)) {
322 Log.e("File doesn't exist: " + apkPath, null);
334 installAPK(apkPath);
998 * @param apkPath Name of the package to be installed.
1000 public void installAPK(final String apkPath) throws DeviceDisconnectedException, argument
1002 if ((apkPath == null) || (apkPath.length() == 0) || (!HostUtils.isFileExist(apkPath))) {
1003 throw new InvalidApkPathException(apkPath);
[all...]

Completed in 41 milliseconds