Hi everyone
I'm working with ANDROID ICS in Beaglebone, I had customized the ICS i tried to add my app with ICS by following procedure
I have copied the package form eclipse workspace to <android-root>/Packages/apps.
I have created the Android make file like as
LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)
LOCAL_MODULE_TAGS := optional
LOCAL_SRC_FILES := $(call all-subdir-java-files-under, src)
LOCAL_PACKAGE_NAME := Cherry
include $(BUILD_PACKAGE)
I have edited the build/target/product/core.mk--> Cherry\
Then i build the android by
$ make TARGET_PRODUCT=<product-name> OMAPES=4.x -j<N>
Build had completed with warning
make: Warning: File `packages/apps/Cherry/res/values-v11/styles.xml' has modification time 1.1e+07 s in the future
target R.java/Manifest.java: Cherry (out/target/common/obj/APPS/Cherry_intermediates/src/R.stamp)
target Package: Cherry (out/target/product/beaglebone/obj/APPS/Cherry_intermediates/package.apk)...........
make: warning: Clock skew detected. Your build may be incomplete.
I can find Cherry.apk in ics/out/target/product/beaglebone/system/app/ then i had created bootable SD card and i had booted my Beaglebone.
When i try to open my Cherry app its not get execute its displaying as Unfortunately, Cherry has stopped.
Where is mistake happened.?
Even though its just hello world application not a complex app.!
Can anyone help me to open my app in my device.?