Quick Start

Start by Using Hyphen iOS SDK

Create an App in the Dashboard

You need to create an app in the Hyphen Dashboard before using Hyphen SDK. After creating an app, an app secret will be issued. The app secret is required to initialize the SDK.

Install the SDK using SPM

We recommend Swift Package Manager to install our SDK.

Edit Package.swift of your project to add Hyphen SDK.

import PackageDescription

let package = Package(
    name: "my-project",
    dependencies: [
        .package(url: "https://github.com/hyphen-at/hyphen-ios-sdk.git"),
        ...
    ],
    targets: [...]
)

Configuring the SDK

On AppDelegate.swift of your application, insert the following initialization code.

Last updated

Was this helpful?