Contents

anchoriumlink/AnchoriumLink-SPM

Anchorium Link is a powerful SDK that enables developers to create augmented reality applications with ease.

πŸš€ Features

  • Persistent AR anchors across sessions
  • Share anchors between users and devices
  • Swift Package Manager (SPM) integration
  • Pay-as-you-go credit system

πŸ“¦ Installation (Swift Package Manager)

  1. In Xcode, go to

File β†’ Add Packages…

  1. Enter the repository URL:

`` https://github.com/anchoriumlink/AnchoriumLink-SPM.git ``

  1. Choose the latest release version (e.g. 1.0.0).
  1. Add AnchoriumLink to your app target.

πŸ“ Requirements

  • iOS 13.0+
  • Xcode 15+
  • Swift 5.9+
  • Valid Anchorium Link API Key

πŸ”‘ Getting Started

  1. Visit anchoriumlink.com
  2. Sign up in the Developer Portal
  3. Purchase credits
  4. Get your API Key from the dashboard

⚑ SDK Initialization

Initialize the SDK in your app startup (e.g. AppDelegate):

import AnchoriumLink

@main
class AppDelegate: UIResponder, UIApplicationDelegate {
    func application(
        _ application: UIApplication,
        didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?
    ) -> Bool {

        AnchoriumLink.initialize(apiKey: "YOUR_API_KEY")

        return true
    }
}

πŸ“– Basic Usage

Hosting an Anchor

let anchor = try AnchoriumLink.hostAnchor(at: transform) 
print("Anchor hosted with ID:", anchor.id)

Resolving an Anchor

let anchor = try AnchoriumLink.resolveAnchor(withId: "ANCHOR_ID")
print("Anchor resolved at:", anchor.transform)

πŸ’³ Credits & Billing

  • Each anchor operation consumes credits
  • Credits are purchased at anchoriumlink.com
  • The SDK requires valid credits to function

πŸ“„ License

This SDK is proprietary software owned by Anchorium Link. By using it, you agree to the terms in the LICENSE file.


🀝 Support

For technical support: πŸ“§ support@anchoriumlink.com 🌍 anchoriumlink.com

Package Metadata

Repository: anchoriumlink/AnchoriumLink-SPM

Stars: 0

Forks: 0

Open issues: 0

Default branch: main

Primary language: swift

License: Other

README: README.md