Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Xamarin build action warning XA0101

I'm getting following warning while building the Xamarin Android project.

Warning XA0101: @(Content) build action is not supported (XA0101)

For this topic I found resources below, but I can't figure out the solution to get rid of this warning. Can somebody help me?

http://developer.xamarin.com/guides/android/under_the_hood/build_process/#Content http://developer.xamarin.com/releases/android/xamarin.android_5/xamarin.android_5.1/#Bug_Fixes

like image 640
Andree Avatar asked May 19 '15 11:05

Andree


2 Answers

It's a warning that came with the new Xamarin Update. If you want to get rid of it, change the Build Action for AndroidManifest.xml to "none".

like image 51
Markus Dietrich Avatar answered Nov 14 '22 22:11

Markus Dietrich


" New projects created from templates show ignorable build warning: "@(Content) build action is not supported ... AndroidManifest.xml". Workaround: change the build action of "AndroidManifest.xml" to "none". Now fixed in the Alpha and Beta channels. "

-- by Stable release: XamarinVS 3.11.445, new features and bug fixes (Brendan Zagaeski)

Refer : Bug 28210 - Bugzilla

like image 2
Yksh Avatar answered Nov 14 '22 23:11

Yksh