| Dobrica Pavlinušić's random unstructured stuff Android development: Revision 16 I will try to collect here useful tips for making Android development work for command-line loving person like me. See Android G1 if you are interested in hardware. ADBPart of http://developer.android.com/sdk/index.html Remote adb accessdpavlin@t61p:~/Downloads/android$ adb shell # setprop service.adb.tcp.port 5555 dpavlin@t61p:~$ ssh -R 5555:192.168.1.40:5555 klin dpavlin@klin:~$ adb connect 127.0.0.1:5555 dpavlin@klin:~$ adb devices List of devices attached 127.0.0.1:5555 device provision device
adb shell
su
cd /data/data/com.android.providers.settings/databases
sqlite3 settings.db
INSERT INTO system (name, value) VALUES ('device_provisioned', 1);
.exit
CyanogenMod
 SL4Ax86dpavlin@android:/srv/android-x86$ repo init -u git://git.android-x86.org/manifest.git -b froyo-x86 dpavlin@android:/srv/android-x86$ repo sync # configure build dpavlin@android:/srv/android-x86$ . build/envsetup.sh dpavlin@android:/srv/android-x86$ lunch Application build processrepo
 repack applications |