Hi,
I'm building the Android file system for an i.MX53 board, and I've successfully done so. However, I would also like to add files to my /data/data/ directory for certain pre-built apps, preferably with the same user/group as the app itself.
I'm able to do this by booting up the device and using an adb push, but my app really needs the files to exist before it can run properly. Also, an adb push makes the files belong to the root user/group rather than belong to the app.
How do I do this? Thanks.