I'm trying to be able to create a simple application for a Motorola Droid using the command line in Ubuntu 9.04. I've tried eclipse, but the C++, PHP, Android, etc parts seem to be incompatible and cause eclipse to not run very well, so I've abandoned eclipse on Ubuntu. I'm trying to set up the tools on the command line.
Here's what I've done so far: 1. download android-sdk_r05-linux_86.tgz from http://developer.android.com/sdk/index.html 2. tar xvzf android-sdk_r05-linux_86.tgz 3. ln -s android-sdk-linux_86 android 4. in .tcshrc added setenv PATH .....:/home/xxx/android/tools 5. source .tcshrc 6. ran 'android'. This opened a gui. I selected 'available packages' and installed everything, and quit the gui. 7. ran 'android list targets' and I get: Available Android targets: id: 1 or "android-3" Name: Android 1.5 Type: Platform API level: 3 Revision: 1 Skins: HVGA-P, HVGA (default), QVGA-P, QVGA-L, HVGA-L id: 2 or "Google Inc.:Google APIs:3" Name: Google APIs Type: Add-On Vendor: Google Inc. Revision: 3 Description: Android + Google APIs Based on Android 1.5 (API level 3) Libraries: * com.google.android.maps (maps.jar) API for Google Maps Skins: QVGA-P, HVGA-L, HVGA (default), QVGA-L, HVGA-P id: 3 or "android-4" Name: Android 1.6 Type: Platform API level: 4 Revision: 1 Skins: HVGA (default), WVGA800, WVGA854, QVGA id: 4 or "Google Inc.:Google APIs:4" Name: Google APIs Type: Add-On Vendor: Google Inc. Revision: 2 Description: Android + Google APIs Based on Android 1.6 (API level 4) Libraries: * com.google.android.maps (maps.jar) API for Google Maps Skins: WVGA854, HVGA (default), QVGA, WVGA800 id: 5 or "android-6" Name: Android 2.0.1 Type: Platform API level: 6 Revision: 1 Skins: WQVGA432, HVGA (default), WVGA800, WVGA854, WQVGA400, QVGA id: 6 or "Google Inc.:Google APIs:6" Name: Google APIs Type: Add-On Vendor: Google Inc. Revision: 1 Description: Android + Google APIs Based on Android 2.0.1 (API level 6) Libraries: * com.google.android.maps (maps.jar) API for Google Maps Skins: WQVGA400, WVGA854, HVGA (default), WQVGA432, QVGA, WVGA800 id: 7 or "android-7" Name: Android 2.1 Type: Platform API level: 7 Revision: 1 Skins: WQVGA432, HVGA (default), WVGA800, WVGA854, WQVGA400, QVGA id: 8 or "Google Inc.:Google APIs:7" Name: Google APIs Type: Add-On Vendor: Google Inc. Revision: 1 Description: Android + Google APIs Based on Android 2.1 (API level 7) Libraries: * com.google.android.maps (maps.jar) API for Google Maps Skins: WQVGA400, WVGA854, HVGA (default), WQVGA432, QVGA, WVGA800 I think that I next need to run something like 'android create avd -- target 2 --name my_avd', but not sure. If I run 'android' by itself it says that there are no 'Virtual Devices', even though 'android list targets' lists 8 targets. 1. Is a target the sams as a Virtual Device? If so, why don't they show up in the gui program? 2. How do I see what the skins look like? 3. Which skin should I use for the Motorola Droid? Or where can I get a target/virtual device/skin for the droid? thanks, Bob -- You received this message because you are subscribed to the Google Groups "Android Beginners" group. NEW! Try asking and tagging your question on Stack Overflow at http://stackoverflow.com/questions/tagged/android To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-beginners?hl=en

