ARControlls
AR SDK Project
Introduction
ARControlls is a AR SDK which provides tracking of dynamic images and we can show Video, Buttons and 3D objects as an Augmented content. User must have to register by click on ARControlls. After registration user will get a key which user have to put in application.
Installation Steps
Register your app here, and copy registration key after register successfully.
Step 1
Install pod
pod 'ARControlls'
Step 2
-
After installing pod, in AppDelegate.swift import ARControlls
-
Now you need to set your registration key in didFinishLaunch methode of AppDelegate.swift file
Example:-
import ARControlls
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
ARSDKit.apiKey = "R7aoK****************"
return true
}
Set following permission in your info.plist
<key>NSCameraUsageDescription</key>
<string>We wants to use your camera</string>
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
</dict>
Step 4
- Take a UIView in ViewController and assign a class "PreviewView"
- Build and Run your project.
Step 5
Step 3After installing pod, in AppDelegate.swift import ARControlls
Now you need to set your registration key in didFinishLaunch methode of AppDelegate.swift file
Example:-
import ARControlls
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
ARSDKit.apiKey = "R7aoK****************"
return true
}
Set following permission in your info.plist
<key>NSCameraUsageDescription</key>
<string>We wants to use your camera</string>
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
</dict>
- Take a UIView in ViewController and assign a class "PreviewView"
- Build and Run your project.