Open matanporeh opened 8 years ago
getting: Specs satisfying the SQLCipher dependency were found, but they required a higher minimum deployment target.
SQLCipher
Specs satisfying the SQLCipher (~> 3.3.0) dependency were found, but they required a higher minimum deployment target.
SQLCipher (~> 3.3.0)
what should i do to overcome this issue?
What deployment target do you have in your pod file?
platform :ios, '7.0'
inhibit_all_warnings!
target 'MyApp' do pod 'EncryptedCoreData', :git => 'https://github.com/project-imas/encrypted-core-data.git' end
@matanporeh it is pretty old question.
This pod has iOS minimum deployment target equal 8.0 ( Look at .podspec ).
8.0
You can't install it on projects below '8.0'.
But you could use previous versions of this repository. E.g.
pod 'EncryptedCoreData', '3.0'
getting: Specs satisfying the
SQLCipher
dependency were found, but they required a higher minimum deployment target.Specs satisfying the
SQLCipher (~> 3.3.0)
dependency were found, but they required a higher minimum deployment target.what should i do to overcome this issue?