SpatialDBKit icon indicating copy to clipboard operation
SpatialDBKit copied to clipboard

Is there any other way to install SpatialDBKit?

Open marychenyuan opened this issue 7 years ago • 2 comments

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

marychenyuan avatar Oct 31 '17 09:10 marychenyuan

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.

marychenyuan avatar Oct 31 '17 09:10 marychenyuan

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

mojtabacazi avatar Feb 28 '18 18:02 mojtabacazi