Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion Xamarin.MacDev/ManifestExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -454,6 +454,8 @@ public static string GetNSExtensionPointIdentifier (this PDictionary dict)
return IOSExtensionPoint.SharedLinks;
case "com.apple.spotlight.index":
return IOSExtensionPoint.SpotlightIndex;
case "com.apple.authentication-services-credential-provider-ui":
return IOSExtensionPoint.AuthenticationServicesCredentialProviderUI;
}

return IOSExtensionPoint.Unknown;
Expand Down Expand Up @@ -885,6 +887,8 @@ public enum IOSExtensionPoint
//com.apple.Safari.sharedlinks-service
SharedLinks,
//com.apple.spotlight.index
SpotlightIndex
SpotlightIndex,
// com.apple.authentication-services-credential-provider-ui
AuthenticationServicesCredentialProviderUI,
}
}
1 change: 1 addition & 0 deletions Xamarin.MacDev/MonoTouchSdk.cs
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,7 @@ static PDictionary CreateMinExtensionVersions ()
ios.Add ("com.apple.message-payload-provider", new PString ("10.0"));
ios.Add ("com.apple.usernotifications.content-extension", new PString ("10.0"));
ios.Add ("com.apple.usernotifications.service", new PString ("10.0"));
ios.Add ("com.apple.authentication-services-credential-provider-ui", new PString ("12.0"));

tvos.Add ("com.apple.broadcast-services", new PString ("10.0"));
tvos.Add ("com.apple.tv-services", new PString ("9.0"));
Expand Down