Hi,
if I use "linker=all", and I want to keep my DependecyServices classes usable (both ios and android) which of the 3 Preserve attrib to use? It's a Xamarin.Forms/PCL app.
Currently, I am using Xamarin.Forms.Internals.Preserve for both ios+android, and it seems to work, but the xamarin doc says to use 'Android.Runtime.Preserve' for Android and 'Xamarin.iOS.Foundation.Preserve' for iOS.
[????????????.Preserve(AllMembers = true)]
class ABC : IABC
{
public string Hello()
{
return "hello";
}
}