diff options
| author | SakuraiLH <hikarilh@foxmail.com> | 2021-07-14 09:17:51 +0000 |
|---|---|---|
| committer | SakuraiLH <hikarilh@foxmail.com> | 2021-07-14 09:17:51 +0000 |
| commit | 86c033169fef7a69fb1e848ac86ba91e327116bc (patch) | |
| tree | 6cd29a03345cf6086ae7d68fb8073dfa16662194 | |
| parent | c4e56bba6d2360051a113e65ba690f1d7040a2dd (diff) | |
Move app to system partition
* As @fryevia discovered, there will be an error when
sdk_version doesn't exist in device tree (vayu in this case)
* error: packages/apps/SoftAPManager/app/src/main/Android.bp:1:1:
module "SoftAPManager" variant "android_common":
sdk_version: sdk_version must have a value when the module is
located at vendor or product
(only if PRODUCT_ENFORCE_PRODUCT_PARTITION_INTERFACE is set).
* Therefore, moving it to system would be the best selection for
device trees which don't include "sdk_version".
Signed-off-by: SakuraiLH <hikarilh@foxmail.com>
Tested-by: fryevia <fryevia@gmail.com>
Change-Id: I1b6d25691c23ea7d5b94b6743543f423f9cc08d1
| -rw-r--r-- | app/src/main/Android.bp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/app/src/main/Android.bp b/app/src/main/Android.bp index 4b63078..3b31012 100644 --- a/app/src/main/Android.bp +++ b/app/src/main/Android.bp @@ -11,7 +11,6 @@ android_app { ], platform_apis: true, - product_specific: true, privileged: true, certificate: "platform", |
