cocoapods - Unknown pod name -
in appcode, via cocoapods, trying install pod quickdialog
in podfile, have:
pod "quickdialog"
when go install, error saying unknown pod name
message window shows:
/usr/bin/ruby /applications/appcode.app/contents/bin/pod install --no-ansi
updating local specs repositories
failed exit code: -1
what need do?
edit: tried suggestion i'l'i:
pod 'quickdialog', '~1.0'
try on new project:
- xcode > new > project > single view app > obj-c > so-32098667 > next > create
- terminal > cd ../so-32098667/
- pod init
- use podfile below
- pod install
podfile
platform :ios, '8.0' target 'so-32098667' pod 'quickdialog' end
pod install
downloading dependencies installing quickdialog (1.0) generating pods project integrating client project
tested minutes ago pod
version 0.37.1 xcode
version 6.4.
Comments
Post a Comment