Dobrica Pavlinušić's random unstructured stuff
Android development: Revision 7
{file: 99swapon}

I will try to collect here useful tips for making Android development work for command-line loving person like me.

^ ADB

^^ Remote adb access

.pre
dpavlin@t61p:~/Downloads/android$ adb shell
# setprop service.adb.tcp.port 5555
.pre

.pre
dpavlin@t61p:~$ ssh -R 5555:192.168.1.40:5555 klin
.pre

.pre
dpavlin@klin:~$ adb connect 127.0.0.1:5555

dpavlin@klin:~$ adb devices
List of devices attached
127.0.0.1:5555 device
.pre

^ CyanogenMod

* http://wiki.cyanogenmod.com/index.php?title=Compile_CyanogenMod_for_Dream_%26_Sapphire

^ SL4A

* http://code.google.com/p/android-scripting/wiki/RemoteControl

^ x86

* http://www.android-x86.org/getsourcecode

^ Application build process

* http://www.alittlemadness.com/2010/06/07/understanding-the-android-build-process/