We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
To integrate EFStorage into your project, you can use
dependencies: [ .package(url: "https://github.com/EFPrefix/EFStorage.git", .upToNextMajor(from: "0.0.2")) ], targets: [ .target( name: "YourTarget", dependencies: ["EFStorageCore", "EFStorageUserDefaults"/*, ...*/]), ]
Each individual component is its own module, so you'll need to import each module that you want to use like this:
import EFStorageUserDefaults import EFStorageKeychainAccess
pod 'EFStorage' # or, specify subspecs that you are interested in: pod 'EFStorage/UserDefaults'
Since all subspecs are combined into one single module, you just need to import that:
import EFStorage