From 379fed7f588d543091e2f357bf7e0e4eb5e06c04 Mon Sep 17 00:00:00 2001 From: dragonpilot Date: Tue, 31 Dec 2019 18:11:46 +1000 Subject: [PATCH] fix issue that may install apks every time --- common/apk.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/apk.py b/common/apk.py index 064696f10..e9ef98268 100644 --- a/common/apk.py +++ b/common/apk.py @@ -6,7 +6,7 @@ import shutil from common.basedir import BASEDIR from selfdrive.swaglog import cloudlog -android_packages = ("ai.comma.plus.offroad", "ai.comma.plus.frame") +android_packages = ("tw.com.ainvest.outpack", "cn.dragonpilot.gpsservice", "com.autonavi.amapauto", "com.mixplorer", "com.tomtom.speedcams.android.map", "ai.comma.plus.offroad", "ai.comma.plus.frame") def get_installed_apks(): dat = subprocess.check_output(["pm", "list", "packages", "-f"], encoding='utf8').strip().split("\n")