Podfile错误写法,会报错The dependency `Reveal-iOS-SDK` is not used in any concrete target. platform:ios,'7.0' pod 'Reveal-iOS-SDK', :configurations => ['Debug'] Podfile正确的写法: platform:ios,'7.0' target 'WeiYiTest' dopod 'Reveal-iOS-SDK', :configurations => […
当用CocoaPods  pod install 时出现了下面的错误时: p.p1 { margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo; color: #c33720 } span.s1 { } [!] The dependency `JSONModel (~> 1.2.0)` is not used in any concrete target. The dependency `MJExtension (~> 3.0.10)` is n…
今天新机装cocopods时,等安装完毕发觉出现[!] The dependency `AFNetworking (~> 3.1.0)` is not used in any concrete target.这个警告.看了下版本: 1.0.1   解决方式: 官网是这样给推荐的: 在创建Podfile的时候,用这种格式使用, platform :ios, '8.0' #use_frameworks!个别需要用到它,比如reactiveCocoa target 'TestPod' do pod '…
看到这个错误提示,首先看看自己的版本是不是 OS X EI Capitan,也就是10.10以后的版本,因为这个版本是比较新的版本,网络上找的那些安装cocoapod命令其实有些过时了,特别是创建podfile时,应用这种格式: platform :ios, '8.0' #use_frameworks!个别需要用到它,比如reactiveCocoa target 'MyApp' do pod 'AFNetworking', '~> 2.6' pod 'ORStackView', '~> 3.0…
问题描述: The dependency `FMDB` is not used in any concrete target 解决办法: 官网是这样给推荐的: 在创建Podfile的时候,用这种格式使用, platform :ios, ‘8.0' target 'MyApp' do pod 'AFNetworking', '~> 2.6’ pod 'ORStackView', '~> 3.0’ pod 'SwiftyJSON', '~> 2.3' end 里面的 MyApp 记得替换为自…
RubertdeMacBook-Pro:项目名 Rubert$ pod install Analyzing dependencies [!] The dependency `BaiduMapKit` is not used in any concrete target. ===========已下是我找到解决办法后,运行的日志========================= RubertdeMacBook-Pro:项目目录 Rubert$ pod install Analyzing depen…
内容提要: podfile升级之后到最新版本,pod里的内容必须明确指出所用第三方库的target,否则会出现The dependency `` is not used in any concrete target这样的错误. 以下从三个步骤陈述: 1. Podfile升级 查看pod版本: pod --version pod 升级(此时是升级到1.0.0.beta.2版本): sudo gem install cocoapods --pre 2. 错误内容: 我的Podfile的内容是: pl…
[!] Oh no, an error occurred. Search for existing GitHub issues similar to yours: https://github.com/CocoaPods/CocoaPods/search?q=No+such+file+or+directory+-+%2FUsers%2Fquan%2FDesktop%2F%E8%AF%BE%E5%A0%82%E6%96%87%E4%BB%B6%E4%B8%8B%E8%BD%BD%2F8+-+%E7…
很多时候我们都会去gitHub上down别人的源码去研究,如果别人的项目用pod集成了,当我们下载好后不外乎cd到项目根目录pod install一下,集成项目所需的库类.今天在我pod install的时候突然报错,如截图所示: 看了下错误日志,Masonry (= 1.0.2) required by 'Podfile.lock'.然后习惯性的pod search Masonry,发现出现的版本是1.0.1.再看日志out-of-date source repos,原来是仓库数据更新了,只需…
报错 ERROR Failed to compile with 1 errors 10:33:34 ├F10: PM┤ This dependency was not found: * @/views/teacher/save in ./src/router/index.js To install it, you can run: npm install --save @/views/teacher/save 原因 在router/index.js中,路径写错,写对就可以了.…
[解决方式] 命令行1(编译): sudo arch -x86_64 gem install ffi 命令行2(安装): arch -x86_64 pod install 原出处:https://github.com/CocoaPods/CocoaPods/issues/10220#issuecomment-730963835 [命令行报错信息] Last login: Thu Dec 10 10:20:12 on ttys000 lhy@lihaoyuandeMacBook-Pro SHSho…
pod install p.p1 { margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo; color: #34bd26 } span.s1 { } JSONModel (1.2.0) 报错 删除   p.p1 { margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo } span.s1 { } pod 'JSONModel', '~> 1.2.0' 重新pod install 别的 再pod…
报错: Note: further occurrences of HTTP header parsing errors will be logged at DEBUG level. java.lang.IllegalArgumentException: Invalid character found in the request target. The valid characters are defined in RFC 7230 and RFC 3986-- 错误原因: 当在浏览器中访问时…
产生这个问题的原因是最新版本的CocoaPods把Podfile文件的书写格式改变了,官网推荐用如下格式书写: platform :ios, '8.0' use_frameworks! target 'MyAppName' do pod 'AFNetworking', '~> 2.6' pod 'ORStackView', '~> 3.0' pod 'SwiftyJSON', '~> 2.3' end 其中把MyAppName换成工程名,最后使用 pod install --verbos…
最近更新了下cocoapods,今天再pod update  就遇到这个错误: 大体意思就是说,库没有用到指定的target. 找了下资料,发现是新版CocoaPods在 Podfile里使用时,必须指定target: 比如: platform:ios,'7.0' target 'TestSwift' do pod 'AFNetworking' pod 'SDWebImage' pod 'JSONModel' pod 'MJRefresh' pod 'SDCycleScrollView','~>…
官网是这样给推荐的: 在创建Podfile的时候,用这种格式使用, platform :ios, '8.0' use_frameworks! target 'MyApp' do pod 'AFNetworking', '~> 2.6' pod 'ORStackView', '~> 3.0' pod 'SwiftyJSON', '~> 2.3' end 里面的 MyApp 记得替换为自己攻城里面的target.这样就基本OK了,执行pod install / pod update 就都可以…
Apple发布了iPhone7同时也发布了xcode8,第一时间升级,并且用Xcode8集成cocoapods但是打开工程,会报一大堆错误解决这个问题
由于OSX的安全解决方案,所以默认路径不能安装,需要自己制定安装的路径
执行这个命令就可以了 sudo gem install -n /usr/local/bin cocoapods --pre接下来大工告成,你可以继续愉快的玩耍了…
Xcode升级到5.1了,apple默认让所有app都通过64位编译器编译,所以会报各种错误信息,关闭64位编译就好了. 选中Targets—>Build Settings—>Architectures.删除$(ARCH_STANDARD)(点’-’)增加armv7和armv7s cocoapods中也会出现这个, 用类似的方法解决" 把Pods,及各库都换成 armv7和armv7s可以把各个pods库全选, 整体修改. 一个一个弄太麻烦.…
升级OS X EL Capitan10.11之后,原来的pod不能用了,重新安装cocoapods,发现 在运行 “sudo gem install cocoapods” 的时候出现问题: ERROR: While executing gem ... (Errno::EPERM) Operation not permitted - /usr/bin/fuzzy_match 估计是gem版本没有更新.执行sudo gem update --system,又出现了错误 ERROR: While ex…
1.[!] ERROR: Parsing unable to continue due to parsing error: contained in the file located at xxx/xxx.lock 解决方法: 删除lock文件和pods文件夹,再重新pod install 2.重装cocoapods无法搜索三方库,提示: [!] Unable to find a pod with name, author, summary, or description matching `a…
'dependencies.dependency.(groupId:artifactId:type:classifier)' must be unique: org.springframework:spring-webmvc:jar dependency.(groupId:artifactId:type:classifier)' must be unique:依赖必须是唯一的 duplicate declaration of version :重复申明版本 解决:检查自己的pox.xml中是否重…
Automatically assigning platform iOS with version 9.0 on target 你的工程名称 because no platform was specified. Please specify a platform for this target in your Podfile. See `https://guides.cocoapods.org/syntax/podfile.html#platform` 这是在使用cocoapods安装三方库配置…
1.在新建项目,引入CocoaPod时,当创建了podfile文件后,执行pod install时报一下错误   2.这是因为 这个第三方不知道用于哪个target,所以必须指定target 解决方案:修改podfile文件,如下图 红色框里的为你的target 名字   3.随后,在执行 pod install 即可   至此,成功为新项目引入了CocoaPod    …
更新了 CocoaPods 后,再执行 "pod install" 时报了如下错误: [!] The dependency `AFOnoResponseSerializer` is not used in any concrete target. The dependency `SDWebImage` is not used in any concrete target. The dependency `SSKeychain` is not used in any concrete t…
Springboot 之 启动报错-数据库 springboot项目在启动时,报如下错误: Error starting ApplicationContext. To display the auto-configuration report re-run your application with 'debug' enabled. 2019-09-09 20:47:28.395 ERROR 16240 --- [ main] o.s.b.d.LoggingFailureAnalysisRepo…
1.打开终端 2 移除现有 Ruby 默认源 输入以下指令 $gem sources --remove https://rubygems.org/ 3.使用新的源 输入以下指令 $gem sources -a https://ruby.taobao.org/ 4.验证新源是否替换成功 输入以下指令 $gem sources -l 5.安装 CocoaPods $sudo gem install cocoa pods //–––––––––––那么问题来了——没遇到的自动跳过———————————…
1.终端报错:The dependency MBProgressHUD (~> 0.9.2) is not used in any concrete target.2.原因:CocoaPods升级到最新版本(包括一些高版本),Podfile文件的内容必须明确指出所用第三方库的targetName.3.报错分析:低版本和高版本写法不一样. 低版本:platform :ios, '8.0'pod 'MBProgressHUD', '~> 0.9.2' 高版本:platform :ios, '8.0…
〇.前言 <p>在iOS开发中 CocoaPods作为库依赖管理工具就是一把利器. 有了 CocoaPods则无需再通过拖 第三方库及第三方库所依赖的 framework静态库到项目中等麻烦的操作,仅仅只需要通过终端(Terminal)输入一些指令即可完成这些操作:而且涉及到第三方库的更新升级也可以通过 CocoaPods进行手动管理更新. 方便快捷!赶快行动起来吧!!! 一.Homebrew.Rvm.Ruby.CocoaPods 简介 1.官网及相关链接 Rvm 官网: https://ww…
CocoaPods升级后(最新版本1.0.1),安装第三方库的时候会报如下错误: The dependency `AFNetworking (~> 3.1.0)` is not used in any concrete target. 原因:CocoaPods升级后,Podfile文件的内容格式要求发生了变化,必须指出指出所用第三方库的target. 解决步骤: (1)检查CocoaPods的版本 pod --version (2) 升级或安装最新版本(目前版本1.0.1) 注意:如果cocoa…
具体错误: No qualifying bean of type [java.lang.String] found for dependency: expected at least 1 bean which qualifies as autowire candidate for this dependency. Dependency annotations: {} 原因: 1.对应要注入的实现类没有 加注解,如dao层 @Repository  如service层  @Service 2."Y…