Skip to content

Latest commit

 

History

History
49 lines (34 loc) · 890 Bytes

installation.md

File metadata and controls

49 lines (34 loc) · 890 Bytes

Installation Guide

Requirement

  • iOS 9.0+ / macOS 10.11+ / tvOS 9.0+ / watchOS 2.0+
  • Xcode 8.0+
  • Swift 3.0+

Installation

CocoaPods

CocoaPods is a dependency manager for Cocoa projects. You can install it with the following command:

$ gem install cocoapods

CocoaPods 1.1.0+ is required to build QingStorSDK.

To integrate QingStorSDK into your Xcode project using CocoaPods, specify it in your Podfile:

source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '10.0'
use_frameworks!

target '<Your Target Name>' do
  pod 'QingStorSDK'
end

Or use compatible with objective-c version:

source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '10.0'
use_frameworks!

target '<Your Target Name>' do
  pod 'QingStorSDK/ObjcBridge'
end

Then, run the following command:

$ pod install