I am a .NET developer and I wanted to work on mobile development though Java. For this I have download eclipse, SDK, Android SDK, ADT plugin and Phone Gap as mentioned in this URL.

http://www.phonegap.com/start/#android

For me everything went successful. But when I am trying to create new project I am getting below Screen: Pic

My Questions:

  1. Why I am not getting any build target? Am I missing something?
  2. What is Package Name ?
  3. What is create Activity?

I apologize if you find my questions very small or useless but as a beginner these are very important for me

Edit1

Android SDK Installationenter image description here

Edit2

When doing Window > Android SDk and AVD Managerenter image description here

link|improve this question

feedback

3 Answers

up vote 4 down vote accepted

You need to install the Android SDK and install an Android platform package. See this guide to installing the SDK: http://developer.android.com/sdk/installing.html

If you have already installed the SDK then you need to follow step 4 from that guide to install a platform.

  1. From within Eclipse, select Window > Android SDK and AVD Manager.
  2. Choose a platform - ie 2.2, 2.3 etc:

android-sdk-manager

Re: Edit #2 above, go to Eclipse Window->Preferences and configure your Android SDK to point to your SDK folder, looks like d:\program files\android\android-sdk\ from your screenshot

link|improve this answer
Pleas check the edit 1 section. I am facing this problem. Let me post another image, when I am selecting select Window > Android SDK and AVD Manager. – Chris May 2 '11 at 19:12
Please check edit 2 also – Chris May 2 '11 at 19:14
@Chris - #2 is an easy fix, see my update, that might fix all your issues – brendan May 2 '11 at 19:20
Thanks ! It's done. +1 also. Thanks again – Chris May 2 '11 at 19:44
feedback

Package name is your starting folder structure to create.

Create Activity creates an initial activity class for you within your package

link|improve this answer
feedback

I don't know if this will help you much, since I haven't developed with android, but I do use eclipse whenever I programming in Java...

For the first question, there is a tutorial here: http://www.techipost.com/2010/12/17/android-build-target-cant-be-selected-in-eclipse/

For the second questions - A package name is the name of your package, that the application is known by this would i.e. be "com.YourCompany.YourApp" to identify your application.

And this link will help you trough setting up your first Android project: http://developer.android.com/resources/tutorials/hello-world.html

Good luck with it.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.