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)
- In Xcode, go to
File β Add Packagesβ¦
- Enter the repository URL:
`` https://github.com/anchoriumlink/AnchoriumLink-SPM.git ``
- Choose the latest release version (e.g.
1.0.0).
- Add AnchoriumLink to your app target.
π Requirements
- iOS 13.0+
- Xcode 15+
- Swift 5.9+
- Valid Anchorium Link API Key
π Getting Started
- Visit anchoriumlink.com
- Sign up in the Developer Portal
- Purchase credits
- 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