我是靠谱客的博主 无语向日葵,最近开发中收集的这篇文章主要介绍[!] Invalid `Podfile` file: syntax error, unexpected end-of-input, expecting keyword_end.,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

此篇文章为记录使用pods过程中自己出现的一些问题

[!] Invalid `Podfile` file: syntax error, unexpected end-of-input, expecting keyword_end.

解决方法,在编辑此处时,添加end

platform :ios, '8.0'

target:'JDtest' do

pod 'Masonry'

end


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

解决方法,在编辑此处时,添加target, ⚠️target后的'JDtest',为项目名称,'项目名'

platform :ios, '8.0'

target:'JDtest' do

pod 'Masonry'

end




       


最后

以上就是无语向日葵为你收集整理的[!] Invalid `Podfile` file: syntax error, unexpected end-of-input, expecting keyword_end.的全部内容,希望文章能够帮你解决[!] Invalid `Podfile` file: syntax error, unexpected end-of-input, expecting keyword_end.所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(58)

评论列表共有 0 条评论

立即
投稿
返回
顶部