iOS Installation

Requirements

  • Minimum deployment target: iOS 12.0 or higher.
  • Xcode and CocoaPods must be installed on your development machine.
  • Supports both Intel and M1 (Apple Silicon) based machines.
  • On M1 (Apple Silicon) machines, some CocoaPods commands may need to be executed through Rosetta Stone compatibility mode.

Latest Stable Version

The current latest release of IDWise SDK.

SDK
IDWise 5.0.9

Integrating IDWise SDK via CocoaPods

IDWise SDK can be installed using the CocoaPods package manager from the IDWise private CocoaPods repository. To integrate the IDWise SDK into your project, follow these steps:

  1. Ensure you have the following two lines at the top of your Podfile:

    source 'https://cdn.cocoapods.org/'
    source 'https://github.com/idwise/ios-sdk'
    

    These lines add the public CocoaPods source and the IDWise private repository as sources for package installation.

  2. Add the following line under the target section in your Podfile. Here we are pinning the SDK to latest version as It is recommended to use the latest IDWise SDK:

    pod 'IDWise', '5.0.9' 
    
  3. Additionally, include this configuration under the target section of your Podfile to handle code signing settings:

    post_install do |installer|
      installer.pods_project.build_configurations.each do |config|
        config.build_settings['CODE_SIGNING_ALLOWED'] = 'NO'
      end
    end
    
  4. After adding the dependency to your Podfile, run the following command in your terminal to install the IDWise SDK:

    pod install
    

Next Steps

  • To start with the IDWise Standard SDK, click here.