CodableKeychain icon indicating copy to clipboard operation
CodableKeychain copied to clipboard

Swift framework for storing Codable conforming objects to the keychain.

Results 4 CodableKeychain issues
Sort by recently updated
recently updated
newest added

![image](https://user-images.githubusercontent.com/70102353/175520303-691864eb-9e96-44c2-a3be-9f02e8f8e483.png) ![image](https://user-images.githubusercontent.com/70102353/175520491-962fca36-840f-43c9-8ee1-5b631207c735.png)

Adds a Swift 5 compatible Swift Package definition while maintaining a Swift 4.2 compatible Package definition using [version-specific manifest selection](https://github.com/apple/swift-package-manager/blob/main/Documentation/Usage.md#version-specific-manifest-selection) Closes https://github.com/toddkramer/CodableKeychain/issues/5

Update Package.swift to make it usable from SPM in Xcode

Previously the query to fetch the existing item was requiring that the existing item’s accessibility attribute was the same as the new accessibility attribute. This would return no results, which...