Add AutoFill CredentialProvider NSExtensionPoint support (#75)

* Add credential provider to ExtensionPoint enumeration

* Add min version check rule for credential provider ExtensionPoint

* Add trailing comma to make the next entry's diff smaller

Co-authored-by: Rolf Bjarne Kvinge <rolf@xamarin.com>
This commit is contained in:
kiddailey 2020-07-07 02:05:57 -04:00 коммит произвёл GitHub
Родитель a1bc6f39b3
Коммит 5e08f5f2fd
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 6 добавлений и 1 удалений

Просмотреть файл

@ -454,6 +454,8 @@ namespace Xamarin.MacDev
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;
@ -885,6 +887,8 @@ namespace Xamarin.MacDev
//com.apple.Safari.sharedlinks-service
SharedLinks,
//com.apple.spotlight.index
SpotlightIndex
SpotlightIndex,
// com.apple.authentication-services-credential-provider-ui
AuthenticationServicesCredentialProviderUI,
}
}

Просмотреть файл

@ -157,6 +157,7 @@ namespace Xamarin.MacDev
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"));