iOS Installation
Technical Requirements
const Technical_Requirements = {
    XCODE_VERSION: '10.0+',
    IOS_VERSION: '11.0+',
};Installation Methods
The Wunderkind SDK supports multiple methods for installing into a project.
Install with CocoaPods
Add the following to your Podfile, then run pod install to complete.
platform :ios, '11.0'
use_frameworks!
target 'AppTarget' do
  pod 'Wunderkind', podspec: 'https://storage.googleapis.com/wunderkind-ios-sdk/3.1.0.podspec'
endManual Installation
- Download the version from Cloud Storage.
 - Drag and drop 
WunderkindKit.xcframeworkto Frameworks, Libraries, and Embedded Content in General Settings of your application's target. - If you placed the framework in a custom file system's location, please specify it in 
FRAMEWORK_SEARCH_PATHS(in your Build Settings). 
Updated 4 days ago