Tomdroid v.0.2.0 Tomboy on Android Copyright 2008, 2009 Olivier Bilodeau http://www.launchpad.net/tomdroid/ How to Install ============== Tomdroid is not on the Android Marketplace yet. In order to install you have two options: - Directly from the phone using the browser - Using the Android SDK with the phone connected through USB - Directly from the phone using the browser On your phone: 1- Go under Settings -> Application Settings and enable "Unknown sources" 2- Go to http://launchpad.net/tomdroid with your browser 3- Select "downloads" and click to download the tomdroid-.apk - Using the Android SDK with the phone connected through USB 1- Download the Android SDK http://developer.android.com/sdk/1.5_r2/index.html 2- Install the Android SDK http://developer.android.com/sdk/1.5_r2/installing.html Make sure you follow the instructions on setting up your PATH. 3- Perform Step 3 of the "Setting up a Device for Development" instructions. http://developer.android.com/guide/developing/device.html#setting-up 4- Plug in your device, verify if its detected by running: # adb devices 5- If the device is detected then install tomdroid: # adb -d install tomdroid-.apk To reinstall/upgrade: # adb -d install -r tomdroid-.apk Usage ===== Copy your tomboy notes in a tomdroid/ directory inside your sdcard. You can either: * Plug in your sdcard and copy the notes to it: # mkdir /media/sdcard/tomdroid/; cp ~/.tomboy/*.note /media/sdcard/tomdroid/ * Use adb to push the notes while your phone is plugged in by USB: 1- Make sure /sdcard/tomdroid/ exists # adb shell > mkdir /sdcard/tomdroid > exit 2- Pushing the individual note files: # adb push /sdcard/tomdroid/ 3- Repeat step 2 as needed. Uninstall ========= On your phone under Settings -> Applications -> Manage applications Or if you have the SDK installed 1- Plug in your device 2- Run: # adb -d uninstall org.tomdroid