project-imas / encrypted-core-data

v2.0 - iOS Core Data encrypted SQLite store using SQLCipher
Other
786 stars 237 forks source link

can't install from coocapods #228

Open matanporeh opened 8 years ago

matanporeh commented 8 years ago

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?

DanielBroad commented 8 years ago

What deployment target do you have in your pod file?

matanporeh commented 8 years ago

platform :ios, '7.0'

ignore all warnings from all pods

inhibit_all_warnings!

target 'MyApp' do pod 'EncryptedCoreData', :git => 'https://github.com/project-imas/encrypted-core-data.git' end

lolgear commented 7 years ago

@matanporeh it is pretty old question.

This pod has iOS minimum deployment target equal 8.0 ( Look at .podspec ).

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'