博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
The dependency `BaiduMapKit` is not used in any concrete target
阅读量:6002 次
发布时间:2019-06-20

本文共 1959 字,大约阅读时间需要 6 分钟。

RubertdeMacBook-Pro:项目名 Rubert$ pod install

Analyzing dependencies

[!] The dependency `BaiduMapKit` is not used in any concrete target.

 

===========已下是我找到解决办法后,运行的日志=========================

RubertdeMacBook-Pro:项目目录 Rubert$ pod install

Analyzing dependencies

Downloading dependencies

Installing BaiduMapKit (2.10.2)

Generating Pods project

Integrating client project

 

[!] Please close any current Xcode sessions and use `项目名.xcworkspace` for this project from now on.

Sending stats

Pod installation complete! There is 1 dependency from the Podfile and 1 total

pod installed.

 

[!] Your Podfile has had smart quotes sanitised. To avoid issues in the future, you should not use TextEdit for editing it. If you are not using TextEdit, you should turn off smart quotes in your editor of choice.

 

[!] The `项目名 [Debug]` target overrides the `OTHER_LDFLAGS` build setting defined in `Pods/Target Support Files/Pods-项目名/Pods-项目名.debug.xcconfig'. This can lead to problems with the CocoaPods installation

    - Use the `$(inherited)` flag, or

    - Remove the build settings from the target.

 

[!] The `项目名 [Release]` target overrides the `OTHER_LDFLAGS` build setting defined in `Pods/Target Support Files/Pods-项目名/Pods-SubwayInspection.release.xcconfig'. This can lead to problems with the CocoaPods installation

    - Use the `$(inherited)` flag, or

    - Remove the build settings from the target.

=========================华丽丽的结束=====================

  场景描述,在前几天用的是Xocde7.1-beta创建的一个项目,按照百度提供的《开发指南》来操作,成功的运行起来了地图。虽然指南写得有点乱,虽然很想吐槽下这种编译方式。

  昨晚更新了Xcode到7.3,系统当然也更新了。同样是创建了新项目,同样是需要地图,同样是需要编译环境。但是不管怎么执行命令:pod install,依旧是提示:[!] The dependency `BaiduMapKit` is not used in any concrete target. 折腾了好一会,百度了下。

http://www.mamicode.com/info-detail-1174267.html

最后重新编写Podfile文件。内容如下:

platform :ios, ‘8.3‘

target "您的项目名" do
pod 'BaiduMapKit’,’2.10.2’
end

==先说明下8.3,这个是我随便写的一个版本号,但是target后面跟的是你的项目名,并且'BaiduMapkit'后面需要跟百度地图的版本号2.10.2。

这样。。。在执行下命令就可以了。

 

 

 

 

 

 

 

转载于:https://www.cnblogs.com/royi123/p/5482305.html

你可能感兴趣的文章
工作总结--琐碎操作和业务
查看>>
杭电_ACM_Count the Trees
查看>>
linux上安装mysql,亲试成功
查看>>
apache中开启rewrite
查看>>
linux怎么发邮件
查看>>
Expect: 100-continue
查看>>
objective-c 在线视频 学习资料...
查看>>
蓝桥杯省赛[新手向题解] 2019 第十届 C/C++ A组 第九题 DP
查看>>
centos7下编译安装php-7.0.15(PHP-FPM)
查看>>
一些简单的数据库优化
查看>>
npm 相关命令
查看>>
SerializeField和Serializable
查看>>
谈谈Ext JS的组件——布局的使用方法
查看>>
10、Libgdx的内存管理
查看>>
【Linux】CentOS7 alien命令 转化deb 与 rpm的相互转化
查看>>
html如何设置P的高度为零?
查看>>
一个应用程序无法启动错误的解决过程
查看>>
avplayer
查看>>
python 包安装
查看>>
Arduino-串口函数Serial
查看>>