aboutsummaryrefslogtreecommitdiff
path: root/catapult/devil/devil/android/tools/system_app.py
diff options
context:
space:
mode:
Diffstat (limited to 'catapult/devil/devil/android/tools/system_app.py')
-rwxr-xr-xcatapult/devil/devil/android/tools/system_app.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/catapult/devil/devil/android/tools/system_app.py b/catapult/devil/devil/android/tools/system_app.py
index c2f058e0..62bf5a59 100755
--- a/catapult/devil/devil/android/tools/system_app.py
+++ b/catapult/devil/devil/android/tools/system_app.py
@@ -34,8 +34,9 @@ logger = logging.getLogger(__name__)
SPECIAL_SYSTEM_APP_LOCATIONS = {
# Older versions of ArCore were installed in /data/app/ regardless of
# whether they were system apps or not. Newer versions install in /system/
- # if they are system apps, and in /data/app/ if they aren't.
- 'com.google.ar.core': ['/data/app/', '/system/'],
+ # if they are system apps, and in /data/app/ if they aren't. Some newer
+ # devices/OSes install in /product/app/ for system apps, as well.
+ 'com.google.ar.core': ['/data/app/', '/system/', '/product/app/'],
# On older versions of VrCore, the system app version is installed in
# /system/ like normal. However, at some point, this moved to /data/.
# So, we have to handle both cases. Like ArCore, this means we'll end up