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.0.0.podspec'
end
Manual Installation
- Download the version from Cloud Storage.
- Drag and drop
WunderkindKit.xcframework
to 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 about 1 month ago