Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Xamarin iOS Your app is using a compiler option that requires xamarin.ios Business edition

Tags:

c#

ios

xamarin

Since downloading the latest version of Xamarin Studio 5.9 I cannot compile my ioS application. I get the error message -

Your app is using a compiler option that requires xamarin.ios Business edition or higher Your app is using the compiler option --profiling.

I have not chosen the profiler option but cannot find a way to turn it off.

like image 484
Adam Diament Avatar asked May 06 '15 19:05

Adam Diament


2 Answers

After some investigation, I found out that the update to the latest version of Xamarin Studio had caused a change to the settings in the .csproj file. Opening the file and searching the xml I found two nodes called MtouchProfiling with the value set to true. I changed the values to false and built again, voila, working!

like image 128
Adam Diament Avatar answered Sep 27 '22 15:09

Adam Diament


To disable profiling go to Project options / iOS Build and in Debugging Options uncheck Enable profiling.

like image 20
Michael Malov Avatar answered Sep 27 '22 15:09

Michael Malov