User:Joel Reymont/Android Notes: Difference between revisions

From MozillaWiki
Jump to navigation Jump to search
Line 32: Line 32:
$AND_BIN/emulator -sysdir $AND_PROD -kernel $AND_QEMU -system $AND_IMG
$AND_BIN/emulator -sysdir $AND_PROD -kernel $AND_QEMU -system $AND_IMG
</pre>
</pre>
== Vlad's Android Notes ==
Can be found [https://wiki.mozilla.org/User:VladVukicevic/Android_Notes here].

Revision as of 15:51, 7 October 2009

Intro

This page collects my notes on porting Firefox to Android.

Current status

October 7, 2009

Previous statuses

Android Notes

Building Android on Snow Leopard

1. Get the sources.

2. Apply changes making sure there spaces before refs.

3. make

4. You are set and you can now run the emulator, e.g.

export AND_HOME=/Volumes/android/mydroid
export AND_BIN=$AND_HOME/out/host/darwin-x86/bin
export AND_PROD=$AND_HOME/out/target/product/generic
export AND_QEMU=$AND_HOME/prebuilt/android-arm/kernel/kernel-qemu
export AND_IMG=$AND_HOME/out/target/product/generic/userdata.img

hdiutil attach ~/work/android/android.dmg -mountpoint /Volumes/android

$AND_BIN/emulator -sysdir $AND_PROD -kernel $AND_QEMU -system $AND_IMG

Vlad's Android Notes

Can be found here.