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:

  1. xcode > new > project > single view app > obj-c > so-32098667 > next > create
  2. terminal > cd ../so-32098667/
  3. pod init
  4. use podfile below
  5. 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

Popular posts from this blog

mysql - FireDac error 314 - but DLLs are in program directory -

git - How to list all releases of public repository with GitHub API V3 -

c++ - Getting C2512 "no default constructor" for `ClassA` error on the first parentheses of constructor for `ClassB`? -