Here's a quick and boring tutorial on how to get a Java "Hello World" application running on the Dalvik VM of Nitdroid within Harmattan. This requires the Nitdroid Open Mode Kernel (might or might not work with Inception), all Nitdroid files and a bit of patience. This might brick your device or worse, and require a reflash at best. As you can see from the screenshot below, it's not that exciting ;)
- If you want to avoid the Open Mode Warning on each boot, remove the disclaimer from the cal area (this can only be done while in closed mode, as the cal area becomes read-only when flashing open mode until closed mode is re-flashed. This is also the reason why you can't set a device lock code in open mode - the lock code is saved in the cal area) - this is an optional step, and just a cosmetic fix.
- Flash the Nitdroid Open Mode Kernel (be sure to read the "Known limitations" on that post) - this works both on the N950 and N9.
- Boot into Harmattan open mode and replace the preinit script to allow booting into Nitdroid (again, read and understand the warnings on that post)
- Then, download a Nitdroid tarball (the latest is alpha 5, but I had better luck with alpha 4) and extract it to /home/nitdroid/ - the post explains the steps in great detail, including the kernel flashing and preinit replacement
- Reboot into Nitdroid (this might be optional, but do it just to check if your Nitdroid installation is working)
- Reboot into Harmattan again - the following commands are all carried out as root user inside Harmattan (using "devel-su")
- Bind mount /dev/ and /sys/ into Nitdroid:
mount --bind /dev/ /home/nitdroid/dev/
mount --bind /sys/ /home/nitdroid/sys/
- chroot into the Nitdroid hierarchy:
/usr/sbin/chroot /home/nitdroid/
- Set some environment variables (not all of them might be needed, you can find them in "setup the global environment" of init.rc -- save these commands into "setupenv.sh" or something in /home/nitdroid/ and save yourself some typing):
export PATH=/system/bin:/system/xbin:/usr/sbin:/usr/bin:/sbin:/bin
export LD_LIBRARY_PATH=/system/lib
export ANDROID_BOOTLOGO=1
export ANDROID_ROOT=/system
export ANDROID_ASSETS=/system/app
export ANDROID_DATA=/data
export EXTERNAL_STORAGE=/mnt/sdcard
export ASEC_MOUNTPOINT=/mnt/asec
export LOOP_MOUNTPOINT=/mnt/obb
export BOOTCLASSPATH=/system/framework/core.jar:/system/framework/core-junit.jar:/system/framework/bouncycastle.jar:/system/framework/ext.jar:/system/framework/framework.jar:/system/framework/android.policy.jar:/system/framework/services.jar:/system/framework/apache-xml.jar:/sys
- Start the Dalvik VM:
/ # /system/bin/dalvikvm
Dalvik VM requires a class name
Ok, great - 10 steps to start the Dalvik VM, but I promised a Hello World. For that, you need the Android SDK (and the corresponding Java JDK) and follow the "
Basic Dalvik VM Invocation" instructions (steps 1 to 6 on your host computer, from step 6 on your Harmattan device):
- With your favorite editor (mine is vim), create a file "Foo.java" with the following content:
public class Foo {
public static void main(String [] args) {
System.out.println("Hello, world");
}
}
- Compile it:
javac Foo.java
- Use the "dx" utility (from the Android SDK) to package the Foo.class (generated by javac) into a .jar
dx --dex --output=foo.jar Foo.class
- Bonus exercise: "less" the foo.jar file to see its contents:
% less foo.jar
Archive: foo.jar
Length Method Size Cmpr Date Time CRC-32 Name
-------- ------ ------- ---- ---------- ----- -------- ----
72 Defl:N 70 3% 2012-10-23 15:51 1294a38f META-INF/MANIFEST.MF
732 Defl:N 404 45% 2012-10-23 15:51 b6e3654e classes.dex
-------- ------- --- -------
804 474 41% 2 files
- Copy this over to your Harmattan device (assuming USB Networking + Developer Mode + "user" access, "developer" should also work):
scp foo.jar user@192.168.2.15:
- SSH into your Harmattan device, become root (devel-su) and copy the .jar file into the Nitdroid hierarchy:
cp /home/user/foo.jar /home/nitdroid/
- chroot into Nitdroid again and set up the environment (see above)
- Finally, run Dalvik VM, telling it to run the class "Foo" and using a classpath of "foo.jar":
/ # /system/bin/dalvikvm -cp foo.jar Foo
- ...
3 Kommentare:
wonderful :) Do you have any future plans on continuing on this? Some GUI app maybe?
BR
Anderson: Not really at the moment, no. But if somebody wants to pick up from there, a virtual framebuffer driver (that gets the output from Android and then the framebuffer gets read by e.g. a Qt application "outside" the chroot) and some I/O juggling (touch events from the Qt app into a fake input event device going to Android) could do the trick.
Something like this:
https://github.com/pakesson/ParallelDroid
Good afternoon dear thp. Tell, will develop and your apkenv project is farther? it is very interesting to me as I am the owner of Nokia N9 and me not all the same that will be farther with your known program! Thanks
Kommentar veröffentlichen