Follow these steps to run the Fordefi iOS mobile SDK.
- Install
cocoapods-art:sudo gem install cocoapods-art - Configure CocoaPods to use
cocoapods-artwith the correct URL for cryptomobile:COCOAPODS_ART_CREDENTIALS="username:password" pod repo-art add crypto-mobile-ios https://fordefi.jfrog.io/artifactory/api/pods/crypto-mobile-ios - Add a reference to
fordefi-ios-sdkin yourPodfile
plugin 'cocoapods-art', :sources => [
'fordefi-ios-sdk'
]
...
pod 'FordefiSdk', '2.21.0'- Install the required pods, including Signing.framework:
pod 'GoogleSignIn', '7.0.0', :build_type => :dynamic_framework
pod 'GoogleAPIClientForREST/Drive', '3.1.0', :build_type => :dynamic_framework
pod 'FordefiBackupCloudProvidersSdk', '2.21.0'If you require the Fordefi Backup Provider SDK, perform these additional steps:
Install the plugin
cocoapods-user-defined-build-typesand enable it by adding it toPodfile:plugin 'cocoapods-user-defined-build-types' enable_user_defined_build_types!Add dependencies into
PodfileforGoogleSignIn,GoogleAPIClientForREST/DriveandFordefiBackupCloudProvidersSdk:
pod 'GoogleSignIn', '7.0.0', :build_type => :dynamic_framework
pod 'GoogleAPIClientForREST/Drive', '3.1.0', :build_type => :dynamic_framework
pod 'FordefiBackupCloudProvidersSdk', '1.0.73'