Android system-app crashes at startup
Dear community,
I am trying to integrate an app build with Adobe Animate as system app into a custom build Android (8.1 Oreo).
Unfortunately, the app immediately crashes during startup ("App has stopped"). However, if I install the app afterwards inside the custom build Android system everything works fine.
I am using the following Android.mk-file:
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
LOCAL_MODULE_TAGS := optional
LOCAL_MODULE := testapp
LOCAL_CERTIFICATE := platform
LOCAL_SRC_FILES := testapp.apk
LOCAL_MODULE_CLASS := APPS
LOCAL_MODULE_SUFFIX := $(COMMON_ANDROID_PACKAGE_SUFFIX)
include $(BUILD_PREBUILT)
Any ideas why this is not working?
