ARControlls 1.0.3

ARControlls 1.0.3

Maintained by getyoteam solutions llp.



 
Depends on:
Alamofire~> 5.2
SwiftyJSON~> 5.0
YoutubeDirectLinkExtractor~> 0.3
Zip~> 1.1
 

  • By
  • getyoteam

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

Step 1

Register your app here, and copy registration key after register successfully.

Step 2

Install pod

pod 'ARControlls'

Step 3

  • 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
      }
    

Step 4

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 5

  • Take a UIView in ViewController and assign a class "PreviewView"
  • Build and Run your project.