Home
last modified time | relevance | path

Searched refs:apk (Results 1 – 10 of 10) sorted by relevance

/test/vts-testcase/performance/audio_loopback_test/
DREADME.md2 It is based on the Loopback.apk run with Loopback dongle: https://source.android.com/devices/audio/…
13 * Which version of Loopback.apk is used in the test?
14 …The Loopback.apk used in this test is Loopback-v17 copied from https://tradefed.teams.x20web.corp.…
16 * Where can I get the source code for the Loopback.apk?
/test/app_compat/csuite/harness/src/main/java/com/android/tradefed/util/
DPublicApkUtil.java124 for (File apk : apks) { in getApkListFromDirectory()
125 AaptParser parser = AaptParser.parse(apk); in getApkListFromDirectory()
128 String.format("Failed to parse apk file %s", apk.getCanonicalPath())); in getApkListFromDirectory()
136 apk.getName()); in getApkListFromDirectory()
/test/suite_harness/common/host-side/tradefed/tests/src/com/android/compatibility/common/tradefed/presubmit/
DValidateTestsAbi.java142 for (Entry<String, Integer> apk : apkToAbi.entrySet()) { in testApksAbis()
143 if (apk.getValue() < maxAbi) { in testApksAbis()
144 fail(String.format("apk %s only has %s abi when it should have %s", apk.getKey(), in testApksAbis()
145 apk.getValue(), maxAbi)); in testApksAbis()
DApkPackageNameCheck.java128 for (File apk : apkNames) { in testApkPackageNames()
129 String apkName = apk.getName(); in testApkPackageNames()
/test/vts-testcase/nbu/src/
DREADME.md15 The tests have two components, an agent apk running on the Android Device Under
34 * an apk called `android_snippet.apk`
48 * Install the `android_snippet.apk` with opition -g.
/test/mlts/benchmark/tools/
Dbuild_and_dump_intermediate.sh51 …adb install -r $OUT/testcases/NeuralNetworksApiBenchmark/arm64/NeuralNetworksApiBenchmark.apk; then
53 adb install -r $OUT/testcases/NeuralNetworksApiBenchmark/arm64/NeuralNetworksApiBenchmark.apk
/test/vts/tools/vts-tradefed/res/push_groups/
DVtsAgent.push28 DATA/app/VtsAgentApp/VtsAgentApp.apk->/data/local/tmp/VtsAgentApp.apk
/test/mlts/benchmark/
Dbuild_and_run_benchmark.sh37 if ! adb install -r $OUT/testcases/NeuralNetworksApiBenchmark/arm64/NeuralNetworksApiBenchmark.apk;…
39 adb install -r $OUT/testcases/NeuralNetworksApiBenchmark/arm64/NeuralNetworksApiBenchmark.apk
/test/app_compat/csuite/harness/src/main/java/com/android/compatibility/
DAppCompatibilityTest.java482 for (ApkInfo apk : apkList) {
483 if (filterTest(apk.packageName)) {
484 filteredList.add(apk);
/test/suite_harness/common/host-side/tradefed/tests/src/com/android/compatibility/common/tradefed/targetprep/
DDeviceInteractionHelperInstallerTest.java96 private void mockApkPackage(File apk, String packageName) { in mockApkPackage() argument
99 mAaptParsers.put(apk, mockParser); in mockApkPackage()