Skip to content

Commit

Permalink
Move the app to /system_ext
Browse files Browse the repository at this point in the history
As mentioned in go/partitions-in-r, we plan to forbid hidden API in
product partition.
So this app should be moved to /system_ext because it uses hidden API.
It is not permanent, so they can be moved back to /product due to
needs if there isn't hidden usage anymore.

Bug: 137908189
Test: m
Test: check whether device boots successfully
Change-Id: Icd2f7fc7021e84fad9980d58688dc640ca4245f8
  • Loading branch information
ikicha committed Nov 25, 2019
1 parent a6198c2 commit 68da89b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Android.bp
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ android_app {
name: "Settings",
platform_apis: true,
certificate: "platform",
product_specific: true,
system_ext_specific: true,
privileged: true,
required: ["privapp_whitelist_com.android.settings"],
static_libs: ["Settings-core"],
Expand Down
2 changes: 2 additions & 0 deletions CleanSpec.mk
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,8 @@
$(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/APPS/Settings_intermediates)
$(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/APPS/Settings_intermediates)
$(call add-clean-step, rm -rf $(PRODUCT_OUT)/system/priv-app/Settings)
$(call add-clean-step, rm -rf $(PRODUCT_OUT)/system/product/priv-app/Settings)
$(call add-clean-step, rm -rf $(PRODUCT_OUT)/product/priv-app/Settings)

# ************************************************
# NEWER CLEAN STEPS MUST BE AT THE END OF THE LIST
Expand Down

0 comments on commit 68da89b

Please sign in to comment.