Google Mobile Vision iOS issue

2k Views Asked by At

https://developers.google.com/vision/ios/getting-started

pod 'GoogleMobileVision/FaceDetector' does not exist

pod install does not work

2

There are 2 best solutions below

0
On

use - > pod'GoogleMobileVision/FaceDetector' and link all frameworks in Project target->build phases -> link binaries with libraries. It will work it definetly.

googlemobilevision.framework

facedetector.framework

GoogleInterchangeUtilities.framwrok

GoogleNetworkingUtilities.framework

GoogleSymbolUtilities.framework

GoogleUtilities.framework
0
On

Can you add your Podfile and the error detail to the question? I tried the pod and it works.

Here's what my Podfile looks like,

source 'https://github.com/CocoaPods/Specs.git'

target "FaceDetector" do
  pod 'GoogleMobileVision/FaceDetector'
end

Are you able to try out the samples?

pod try GoogleMobileVision