Eclipse Android Project None Target Available

I just installed the latest version of Eclipse and Android SDK. In the Android SDK Manager, I installed everything, and in Eclipse I installed the ADT plugin.

If I select a new project for Android, I will not be able to select Build Target. How can I choose different build targets? Thank you for your help!

+8
android eclipse
source share
6 answers

I had the same problem and I had to go to Eclipse> Window> Preferences> Android to set the location of the Android SDK (C: \ Program Files \ Android \ android-sdk in my case).

You can see this message: Android cannot find the target and also http://www.mail-archive.com/android-beginners@googlegroups.com/msg17763.html

+10
source share

first select the SDK manager in the android folder, then windows will automatically open in which certain packages are selected, from which you can choose the platform on which you want to develop the application. some time to download these packages

Then go to preference mode (Eclipse) → select android from the left pane → select the target in the right pane → got to the Files program → select android → select sdk → Finish

Before starting the application, follow these steps →

-> select the project name from the project explorer -> select run as → run configuration → select the Android configuration → select the name of the project and the name of the activity to start with → Select the target tab from the above → shows the platform you installed → select that platform → select run

Do not forget that I fought with him, I always mention the name of the activity in the manifest file, otherwise, no matter what you program, it will never appear on the emulator, but it shows an error ....

+3
source share

You need to open the SDK manager in the place where you installed the Android SDK, and download individual build targets depending on the version of Android for which you want to develop.

See Step 4 Here: http://developer.android.com/sdk/installing.html

+2
source share

You may have skipped Step 4. Adding platforms and other components to http://developer.android.com/sdk/installing.html . Pay attention to this.

+1
source share

To fix this problem, open the SDK manager through programs or eclipse. It will show the available packages for download. The last one is not selected in this list. Select Versioin 2.2 (API 8). Then install all the subpackages (there are six) inside.

+1
source share

same mistake for me. Just activate "Automatic updates" in eclipse, restart, install a new eclipse update, you will be notified> now you can choose in the Android settings: your folder and all the targets will be there

0
source share

All Articles