Hi there,
I understand that with the latest version of Xamarin.iOS there should be a hotfix available for these kind of errors. Am I wrong or can anybody tell me what to do now?
This is my ApiDefinition of the binding project which causes the error:
namespace AdColony
{
[BaseType (typeof(NSObject))]
[Protocol]
public interface AdColony
{
[Static, Export ("configureWithAppID:zoneIDs:delegate:logging:")]
void ConfigureWithAppID (string appId, string zoneId, AdColonyDelegate adColonyDelegate, bool isLogging);
[Static, Export ("playVideoAdForZone:zoneID:")]
void PlayVideoAdForZone(string zoneId, AdColonyDelegate adColonyDelegate);
[Static, Export ("setCustomID:")]
void SetCustomID(string customId);
}
[Model, BaseType (typeof (NSObject))]
[Protocol]
public partial interface AdColonyDelegate
{
}
[BaseType (typeof (NSObject))]
[Protocol]
public interface WKWebView
{
}
[BaseType (typeof (NSObject))]
[Protocol]
public interface WKWebViewConfiguration
{
}
}
See the error message and my system setup attached.