Is it possible to add a prebuilt APK to an AOSP build as an user app?
问题 I am looking to add a prebuilt APK to my AOSP build. I can already do this by doing the following: Add the APK to the $root_of_my_source_tree/packages/apps folder. Create an Android.mk file. The file has the following contents: LOCAL_PATH := $(call my-dir) include $(CLEAR_VARS) LOCAL_MODULE_TAGS := optional LOCAL_MODULE := <name of APK> LOCAL_SRC_FILES := <Name of APK>.apk LOCAL_MODULE_CLASS := APPS LOCAL_MODULE_SUFFIX := $(COMMON_ANDROID_PACKAGE_SUFFIX) LOCAL_CERTIFICATE := platform include