Remove ApplicationsProvider.
ApplicationsProvider is going away since it's no longer needed. Remove it from the build config. Also add cleansteps to remove the APK & intermediates. Bug: 10407790 Change-Id: I0b273d22e309822fde6d753b541f7ac648607b4e
This commit is contained in:
parent
91efe6bbb7
commit
0735c5f08c
2 changed files with 4 additions and 1 deletions
|
@ -184,6 +184,10 @@ $(call add-clean-step, rm -rf $(PRODUCT_OUT)/system/app/*)
|
|||
# Clean up old location of generated Java files from aidl
|
||||
$(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/framework_intermediates/src)
|
||||
|
||||
# Clean up ApplicationsProvider which is being removed.
|
||||
$(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/APPS/ApplicationsProvider_intermediates)
|
||||
$(call add-clean-step, rm -rf $(PRODUCT_OUT)/system/priv-app/ApplicationsProvider.apk)
|
||||
|
||||
# ************************************************
|
||||
# NEWER CLEAN STEPS MUST BE AT THE END OF THE LIST
|
||||
# ************************************************
|
||||
|
|
|
@ -23,7 +23,6 @@ PRODUCT_DEVICE := generic
|
|||
PRODUCT_NAME := core
|
||||
|
||||
PRODUCT_PACKAGES += \
|
||||
ApplicationsProvider \
|
||||
BackupRestoreConfirmation \
|
||||
DownloadProvider \
|
||||
DownloadProviderUi \
|
||||
|
|
Loading…
Reference in a new issue