Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Unable to resolve target 'android-17'

I know there are some sort-of duplicates of this, but none of the answers have been able to help me so far.

When I open a project, I get the following error:

 [2014-01-07 14:18:00 - Permissions] Unable to resolve target 'android-17'

Does anybody know what may be the problem here?

like image 383
anonymous Avatar asked Jan 07 '14 15:01

anonymous


3 Answers

You can right click on your project -> properties -> Android -> Select the Target android version you want to compile and Apply !

If you don't have any target versions to compile, you probably need to download them on your SDK Manager

like image 76
FOliveira Avatar answered Nov 09 '22 11:11

FOliveira


  1. Open your Android SDK Manager, and make sure your SDK API is installed

  2. You might have several Android SDK folders installed, like me; check that your workspace build path is the one your machine defaults to.

like image 3
Wisley Lov Avatar answered Nov 09 '22 13:11

Wisley Lov


You are probably trying to use a library that was built using API 17 and you do not have it installed. If you are using API 18+ you will be fine.

like image 1
Emmanuel Avatar answered Nov 09 '22 13:11

Emmanuel