From 477b4734f5c4da979d213e7884d5ffe1ecb41eab Mon Sep 17 00:00:00 2001 From: Jiyong Park Date: Mon, 24 Feb 2020 18:36:46 +0900 Subject: [PATCH] Mark updatable APEXes Mark updatable APEXes as updatable: true so that they are opted-out from optimizations that make sense only for non-updatable modules; such as symlinking to the libs in the system partition. Bug: 149805758 Test: m and check that there is no symlink from the APEX to the system partition. Change-Id: Idb55300a60a261c7bb6359439ed220ff51fcf06c --- Tethering/apex/Android.bp | 1 + 1 file changed, 1 insertion(+) diff --git a/Tethering/apex/Android.bp b/Tethering/apex/Android.bp index 94ef11cc12..96a4d20077 100644 --- a/Tethering/apex/Android.bp +++ b/Tethering/apex/Android.bp @@ -16,6 +16,7 @@ apex { name: "com.android.tethering", + updatable: true, java_libs: ["framework-tethering"], apps: ["Tethering"], manifest: "manifest.json",