...
Code Block |
---|
target 'MyAwesomeApp' do ... pod 'MobileProtectAntiFraud' end |
MobileProtectAntiFraud
depends on includes MobileProtect
so it includes all features present in Mobile Protect it isn’t needed to add both pods.
And then run pod install
to retrieve the pods for the project. See https://guides.cocoapods.org/using/the-podfile.html#specifying-pod-versions for deciding if pinning the pod versions is the best practice for your project.
...