https://github.com/devcyclehq/ios-client-sdk
DevCycle - iOS SDKs (Includes macOS, watchOS, tvOS)
https://github.com/devcyclehq/ios-client-sdk
continuous-delivery continuous-deployment devcycle devops feature-flags feature-toggles openfeature
Last synced: 10 months ago
JSON representation
DevCycle - iOS SDKs (Includes macOS, watchOS, tvOS)
- Host: GitHub
- URL: https://github.com/devcyclehq/ios-client-sdk
- Owner: DevCycleHQ
- License: mit
- Created: 2021-11-24T15:19:06.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2025-03-10T18:22:44.000Z (11 months ago)
- Last Synced: 2025-03-12T16:41:44.850Z (11 months ago)
- Topics: continuous-delivery, continuous-deployment, devcycle, devops, feature-flags, feature-toggles, openfeature
- Language: Swift
- Homepage: https://docs.devcycle.com/
- Size: 509 KB
- Stars: 21
- Watchers: 6
- Forks: 5
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# DevCycle iOS / macOS Client SDK
[](https://cocoapods.org/pods/DevCycle)
[](https://github.com/Carthage/Carthage)
[](https://swift.org/package-manager/)
The DevCycle iOS / tvOS / watchOS / macOS 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 Client SDK supports iOS 12.0+ / tvOS 12.0+ / watchOS 7.0+ / macOS 10.13+
## Installation
### CocoaPods
The SDK can be installed into your iOS project by adding the following to your cocoapod spec:
```swift
pod 'DevCycle'
```
Then, run `pod install`.
### 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", .upToNextMajor("1.11.2")),
],
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.
### Carthage
**WARNING: MacOS development with Carthage is currently not supported with DevCycle.**
Include the following in your `Cartfile` to integrate DevCycle as a dependency to your project:
```swift
github "DevCycleHQ/ios-client-sdk"
```
Then, run `carthage update --use-xcframeworks`. Drag the built .xcframework bundles from Carthage/Build into the "Frameworks and Libraries" section of your application’s Xcode project.
## Usage
To find usage documentation, check out our [docs](https://docs.devcycle.com/docs/sdk/client-side-sdks/ios).