Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
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
9 changes: 4 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SimpleKeychain (First Availability)
# SimpleKeychain

![CircleCI](https://img.shields.io/circleci/project/github/auth0/SimpleKeychain.svg?style=flat)
![Version](https://img.shields.io/cocoapods/v/SimpleKeychain.svg?style=flat)
Expand All @@ -7,8 +7,6 @@

Easily store your user's credentials in the Keychain. Supports sharing credentials with an **access group** or through **iCloud**, and integrating **Touch ID / Face ID**.

> ⚠️ This library is currently in [**First Availability**](https://auth0.com/docs/troubleshoot/product-lifecycle/product-release-stages). We do not recommend using this library in production yet. As we move towards General Availability, please be aware that releases may contain breaking changes.

**Migrating from 0.x? Check the [Migration Guide](V1_MIGRATION_GUIDE.md).**

---
Expand Down Expand Up @@ -160,10 +158,11 @@ catch let error as SimpleKeychainError {

### Include additional attributes

When creating the SimpleKeychain instance, specify additional attributes to include in every query.
When creating the SimpleKeychain instance, specify additional attributes to be included in every query.

```swift
let simpleKeychain = SimpleKeychain(attributes: [kSecUseDataProtectionKeychain as String: true])
let attributes = [kSecUseDataProtectionKeychain as String: true]
let simpleKeychain = SimpleKeychain(attributes: attributes)
```

### Share items with other apps and extensions using an access group
Expand Down