Open marychenyuan opened 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.
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
Is there any other way to install SpatialDBKit? not use cocoapod...