krishnads/KGoogleDirectionWithPolyLine

Doesn't work

Closed this issue · 2 comments

diff: /../Podfile.lock: No such file or directory
diff: /Manifest.lock: No such file or directory
error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.

This seems an issue with your cocoapods. Please fix cocoapods issue and try again.

I didn't uploaded pod files because of size limit while uploading.
You can run code by doing following--

  1. open terminal
  2. go to the project folder
  3. run command - pod init
  4. add following into your pod file

Uncomment this line to define a global platform for your project

platform :ios, '9.0'

target 'GoogleDirectionWithPolyLine' do
source 'https://github.com/CocoaPods/Specs.git'
pod 'GoogleMaps'

Uncomment this line if you're using Swift or would like to use dynamic frameworks

use_frameworks!

Pods for GoogleDirectionWithPolyLine

target 'GoogleDirectionWithPolyLineTests' do
inherit! :search_paths

Pods for testing

end

target 'GoogleDirectionWithPolyLineUITests' do
inherit! :search_paths

Pods for testing

end

end
Run - pod install

Open workspace and everything should work fine now.