User:Joel Reymont/Android Notes: Difference between revisions
Jump to navigation
Jump to search
Joel Reymont (talk | contribs) No edit summary |
Joel Reymont (talk | contribs) |
||
| Line 30: | Line 30: | ||
hdiutil attach ~/work/android/android.dmg -mountpoint /Volumes/android | hdiutil attach ~/work/android/android.dmg -mountpoint /Volumes/android | ||
$AND_BIN/emulator - | $AND_BIN/emulator -sysdir $AND_PROD -kernel $AND_QEMU -system $AND_IMG | ||
</pre> | </pre> | ||
Revision as of 15:46, 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