andreacremaschi / SpatialDBKit

An Objective-C lightweight spatial RDBMS (based on SQLite/SpatiaLite)
Other
73 stars 67 forks source link

Is there any other way to install SpatialDBKit? #29

Open marychenyuan opened 7 years ago

marychenyuan commented 7 years ago

Is there any other way to install SpatialDBKit? not use cocoapod...

marychenyuan commented 7 years ago

When I use cocoapod to install the kit, it appeared that:

➜ EFBAirportChart pod install Analyzing dependencies [!] The dependency SpatialDBKit (~> 0.1.1) is not used in any concrete target.

mojtabacazi commented 6 years ago

Might be a little late, but it sounds like you didn't include that dependency in any target.

As of CocoaPods 1.0 you have to have a 'target' section in your PodFile.

As an example:

source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '8.0'

target 'REPLACE WITH PROJECT TARGET NAME' do

pod 'SpatialDBKit', '~> 1.1'

end