AnchoriumLink

1.0.4

Anchorium Link is a powerful SDK that enables developers to create augmented reality applications with ease.
anchoriumlink/AnchoriumLink-SPM

What's New

AnchoriumLink 1.0.4

2025-08-31T02:58:39Z

Exposed Api to set character path

Anchorium Link iOS SDK

Swift Package Index Swift Package Index

The Anchorium Link SDK makes it easy to integrate persistent AR anchors into your iOS apps.
With Anchorium Link, you can store, share, and resolve anchors across sessions and devices β€” powered by our cloud-based platform.


πŸš€ 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…

  2. Enter the repository URL:

    https://github.com/anchoriumlink/AnchoriumLink-SPM.git
    
  3. Choose the latest release version (e.g. 1.0.0).

  4. 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

Description

  • Swift Tools 5.9.0
View More Packages from this Author

Dependencies

  • None
Last updated: Sun Sep 21 2025 13:34:13 GMT-0900 (Hawaii-Aleutian Daylight Time)