Skip to content

Latest commit

 

History

History
58 lines (39 loc) · 1.74 KB

File metadata and controls

58 lines (39 loc) · 1.74 KB

DevCycle iOS Client SDK

CocoaPods compatible Carthage compatible SwiftPM compatible

The DevCycle iOS Client SDK. This SDK uses our Client SDK APIs to perform all user segmentation and bucketing for the SDK, providing fast response times using our globally distributed edge workers all around the world.

Requirements

This version of the DevCycle iOS Client SDK supports a minimum of iOS 12.

Installation

** Note **: Versions 1.3.2 and below are deprecated due to changes to the UserConfig model that support new properties from the retrieved config.

CocoaPods

The SDK can be installed into your iOS project by adding the following to your cocoapod spec:

pod 'DevCycle'

Carthage

Include the following in your Cartfile:

github "DevCycleHQ/ios-client-sdk"

Swift Package Manager

To use the library with Swift Package Manager, include it as a dependency in your Package.swift file like so:

...
    dependencies: [
        .package(url: "https://github.com/DevCycleHQ/ios-client-sdk.git", .upToNextMinor("1.3.5")),
    ],
    targets: [
        .target(
            name: "YOUR_TARGET",
            dependencies: ["DevCycle"]
        )
    ],
...

You can also add it through Xcode, i.e. File > Swift Packages > Add Package Dependency, then enter the repository clone URL.

Usage

To find usage documentation, check out our docs.