Tag Archives: Third-party application issues

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

This article is to document some of the problems with pods
[!] Invalid `Podfile` file: syntax error, unexpected end-of-input, expecting keyword_end.
The solution, when editing here, is to add end
Platform: ios, ‘8.0’
target:’JDtest’ do
pod ‘Masonry’
end

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

Solution, in the edit here, add target, ⚠ ️ ‘JDtest’ after the target, as the project name, ‘project name’
Platform: ios, ‘8.0’
target:’JDtest’ do
pod ‘Masonry’
end