Dobrica Pavlinušić's random unstructured stuff
Android development: Revision 23
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 deviceadb shell su cd /data/data/com.android.providers.settings/databases sqlite3 settings.db INSERT INTO system (name, value) VALUES ('device_provisioned', 1); .exit CyanogenMod
A lot of host dependencies to install and build. dpavlin@android:/srv/cyanogen$ . build/envsetup.sh dpavlin@android:/srv/cyanogen$ lunch dpavlin@android:/srv/cyanogen$ make -j8 flashingTransfer files you just built: dpavlin@x200:/virtual/android/cyanogen$ rsync -v android:/srv/cyanogen/out/target/product/dream_sapphire/{boot.img,recovery.img,system.img,android-info.txt} 2010-09-25/ Download fastboot from http://developer.htc.com/adp.html Start G1 by pressing camera+power button dpavlin@x200:/virtual/android/cyanogen$ sudo ./fastboot devices HT840GZ00000 fastboot dpavlin@x200:/virtual/android/cyanogen$ sudo sh -c "ANDROID_PRODUCT_OUT=2010-09-25/ ./fastboot flashall" -------------------------------------------- Bootloader Version...: 1.33.2005 Baseband Version.....: 2.22.19.26I Serial Number........: HT840GZ33728 -------------------------------------------- checking product... OKAY checking version-bootloader... OKAY sending 'boot' (2234 KB)... OKAY writing 'boot'... OKAY sending 'recovery' (3308 KB)... OKAY writing 'recovery'... OKAY sending 'system' (92239 KB)... OKAY writing 'system'... OKAY rebooting... SL4Ax86froyo 2.2dpavlin@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 # build dpavlin@android:/srv/android-x86$ make -j8 audio doesn't work eclair 2.1dpavlin@android:/srv/android-x86$ repo init -u git://git.android-x86.org/manifest.git -b eclair-x86 dpavlin@android:/srv/android-x86$ repo sync dpavlin@android:/srv/android-x86$ make -j8 iso_img TARGET_PRODUCT=generic_x86 # doesn't work dpavlin@android:/srv/android-x86$ make -j8 iso_img TARGET_PRODUCT=eeepc Application build processrepo
repack applications |