我正在尝试将应用程序添加到 android 自定义 rom 中。运行 make 命令时出现此错误:
*** 没有规则将目标设为
packages/apps/MyApp/AndroidManifest.xml', needed by
out/target/product/msm8996/obj/APPS/MyApp_intermediates/package.apk'。停止
这是我的 Android.mk 文件
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
# Build all java files in the java subdirectory
LOCAL_SRC_FILES := $(call all-subdir-java-files)
# Name of the APK to build
LOCAL_PACKAGE_NAME := MyApp
# Tell it to build an APK
include $(BUILD_PACKAGE)
请帮我解决这个错误