Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to Change Target API Version in Visual Studio Xamarin

My VS worked well before I synchronized my project with my friend's using GitHub. After that, somehow I notice Visual Studio targets different location to android.jar file. So, whenever I compile my code, I receive the following error.

Could not find android.jar for API Level 24. This means the Android SDK platform for API Level 24 is not installed. Either install it in the Android SDK Manager (Tools > Open Android SDK Manager...), or change your Xamarin.Android project to target an API version that is installed. (C:\Users\Joshua\AppData\Local\Xamarin\MonoForAndroid\AndroidSDK\platforms\android-24\android.jar missing.)

C:\Users\Joshua\AppData\Local\Xamarin\MonoForAndroid\AndroidSDK\platforms\android-24\android.jar is a directory location in my friend's drive.

How to change the target location of that android.jar file in VS 2015?

like image 699
Michael Yuwono Avatar asked Sep 01 '16 08:09

Michael Yuwono


2 Answers

Go to android project then right click -> Properties -> Android Manifest (scroll down) then you will see Minimun android version and Target android version.

like image 84
Lrodriguez84 Avatar answered Oct 12 '22 11:10

Lrodriguez84


in vs project -> your application properties -> change target framework to your api version. that's it

like image 29
Neelam Soni Avatar answered Oct 12 '22 13:10

Neelam Soni