-
Notifications
You must be signed in to change notification settings - Fork 0
Troubleshooting
Rajat Pagare edited this page Dec 21, 2018
·
5 revisions
The recommended way of using SmilePass
SDK is through cocoapods, but if you are adding this framework manually there may be chances you will get below error
`dyld: Library not loaded: @rpath/SmilePass.framework/SmilePass
Referenced from: /Users/......
Reason: image not found`
Reasons -
- Make sure you have added
SmilePass.framework
in embedded binaries of your target's settings. - Add AFNetworking.framework file in your project not the all the files of AFNetworking.
While installing cocoapod through pod install
if you are getting
Unable to find a specification for SmilePass
The reason is your cocoapod repo is not updated and you need to update it. To update your repo run
pod setup
After updating your repo, run pod install
then it will work.