HyperbasisHyperbasisDocs
Home

Installation

Add Hyperbasis to your iOS project using Swift Package Manager.

Swift Package Manager

In Xcode

  1. Open your project in Xcode
  2. Go to File > Add Package Dependencies...
  3. Enter the repository URL:
https://github.com/Hyperbasis/hyperbasis-sdk
  1. Select Up to Next Major Version with 1.0.0
  2. Click Add Package

In Package.swift

Add Hyperbasis to your package dependencies:

dependencies: [
    .package(url: "https://github.com/Hyperbasis/hyperbasis-sdk", from: "1.0.0")
]

Then add it to your target:

.target(
    name: "YourApp",
    dependencies: ["Hyperbasis"]
)

Import

Import Hyperbasis in your Swift files:

import Hyperbasis

Platform Requirements

RequirementVersion
iOS17.0+
Swift5.9+
Xcode15.0+

Dependencies

Hyperbasis includes the following dependencies:

  • Supabase Swift SDK (2.0+) - For optional cloud sync functionality
Note

The Supabase dependency is only used if you configure cloud sync. Local-only usage doesn't require any backend setup.

Next Steps