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-v4 \ 13 android-support-annotations \ 14 android-support-v7-recyclerview \ 15 android-support-v7-preference \ 16 android-support-v7-appcompat \ 17 android-support-v14-preference \ 18 android-support-v17-preference-leanback \ 19 android-support-v17-leanback \ 20 SettingsLib 21 22LOCAL_STATIC_JAVA_LIBRARIES := \ 23 xz-java 24 25LOCAL_PACKAGE_NAME := PackageInstaller 26LOCAL_CERTIFICATE := platform 27 28LOCAL_PRIVILEGED_MODULE := true 29 30LOCAL_PROGUARD_FLAG_FILES := proguard.flags 31 32# Comment for now unitl all private API dependencies are removed 33# LOCAL_SDK_VERSION := system_current 34 35include $(BUILD_PACKAGE) 36 37ifeq (PackageInstaller,$(LOCAL_PACKAGE_NAME)) 38# Use the following include to make our test apk. 39ifeq (,$(ONE_SHOT_MAKEFILE)) 40include $(call all-makefiles-under,$(LOCAL_PATH)) 41endif 42endif 43