1LOCAL_PATH:= $(call my-dir) 2include $(CLEAR_VARS) 3 4LOCAL_USE_AAPT2 := true 5 6LOCAL_MODULE_TAGS := optional 7 8LOCAL_SRC_FILES := \ 9 $(call all-java-files-under, src) 10 11LOCAL_STATIC_ANDROID_LIBRARIES += \ 12 android-support-car \ 13 android-support-transition \ 14 android-support-compat \ 15 android-support-media-compat \ 16 android-support-core-utils \ 17 android-support-core-ui \ 18 android-support-fragment \ 19 android-support-v7-appcompat \ 20 android-support-v7-preference \ 21 android-support-v7-recyclerview \ 22 android-support-v14-preference \ 23 android-support-v17-leanback \ 24 android-support-v17-preference-leanback \ 25 car-list \ 26 SettingsLib 27 28LOCAL_STATIC_JAVA_LIBRARIES := \ 29 xz-java \ 30 android-support-annotations 31 32LOCAL_PACKAGE_NAME := PackageInstaller 33LOCAL_CERTIFICATE := platform 34 35LOCAL_PRIVILEGED_MODULE := true 36 37LOCAL_PROGUARD_FLAG_FILES := proguard.flags 38 39# Comment for now unitl all private API dependencies are removed 40# LOCAL_SDK_VERSION := system_current 41LOCAL_PRIVATE_PLATFORM_APIS := true 42 43include $(BUILD_PACKAGE) 44 45ifeq (PackageInstaller,$(LOCAL_PACKAGE_NAME)) 46 # Use the following include to make our test apk. 47 ifeq (,$(ONE_SHOT_MAKEFILE)) 48 include $(call all-makefiles-under,$(LOCAL_PATH)) 49 endif 50endif 51