Hi all,
I have a project at X86. It works well at emulator. I also
built the apk file. How can I put the apk file into beagle board(omap
with android-ported)? How can I execute it?
Best Regards.
Hi all,
I have a project at X86. It works well at emulator. I also
built the apk file. How can I put the apk file into beagle board(omap
with android-ported)? How can I execute it?
Best Regards.
Hi,
I guess you are looking for how to install application to Android on
Beagleboard.
Then, just copy your .apk file to /data/app or /data/app-private in
Android file
system.
Here is another tips how to install application to Android. If you
have make USB
LAN adapter available with Beagleboard, try
$ cd /android/sdk/tools
$ export ADBHOST=<your beagle board IP address>
$ ./adb kill-server && ./adb start-server
$ ./adb install <your .apk file>
Cheers,
...What happens when you copy the .apk file into /data/app and boot the target?