I put my application folder in
packages/apps // inside AOSP source code
Now my application has the following Android.mk in the same folder:
LOCAL_PATH:= $(call my-dir) include $(CLEAR_VARS) LOCAL_MODULE_TAGS := optional LOCAL_SRC_FILES := $(call all-java-files-under, src) LOCAL_PACKAGE_NAME := package_name LOCAL_CERTIFICATE := platform include $(BUILD_PACKAGE)
Now, when I create an AOSP project, it also compiles my application and places the APK file inside:
out / target / product / $ MY_PLATFORM / system / app
But I want to say:
output / target / product / $ MY_PLATFORM / data / application
How can I do it? What change the file?
android makefile android-source
Jeegar patel
source share