-
Notifications
You must be signed in to change notification settings - Fork 266
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Any support for accessGroup ? #165
Comments
Doubled. I'd like for this library to take advantage of Keychain Sharing. |
Same here, I needed to share my user credentials between my app and the iMessage extension. Just opened a PR for it |
There is support for accessGroup. *valid = |
@clayellis an example would be great! |
struct Auth: GenericPasswordSecureStorable, CreateableSecureStorable, ReadableSecureStorable, DeleteableSecureStorable {
var account: String {
return "someUsername"
}
var service: String {
return "YourFantasticApp"
}
var accessGroup: String? {
let appGroupID = "123456XARG" // Provided by Apple. Found in the developer portal.
let sharedKeychainName = "keychain.com.org.shared" // Your custom keychain name.
return appGroupID + "." + sharedKeychainName
}
var data: [String : Any] {
// Custom representation of your data...
}
} |
No description provided.
The text was updated successfully, but these errors were encountered: