-
Notifications
You must be signed in to change notification settings - Fork 742
Creating a new ARCL App: Part 1
Eric Internicola edited this page Sep 15, 2019
·
4 revisions
In this section, learn (in tutorial style) how to create a new ARKit-CoreLocation project from scratch. This will walk you through the process of creating the 360iDev AR Navigation App.
- Create a new Project
-
NSCameraUsageDescription
: ARKit requires use of the Camera, so we need to update theInfo.plist
file to add a description for the app:
-
NSLocationWhenInUseUsageDescription
: ARCL requires use of Location Services, so we need to updateInfo.plist
with a description for the key to tell users why we're using location services.
- Tooling: Setup the Gemfile (cocoapods + fastlane) with your favorite editor.
- Tooling: Install bundler and then use bundler to install the gems for us.
- Tooling:
pod init
will create a new Podfile for us, we'll edit it after this step.
- Podfile: We edit the Podfile that was generated
- Platform minimum = iOS 11
- We add the ARCL pod
- Tooling:
pod install
- Close your Xcode project
- Open the
xcworskapce
file now.
NOTE: At this point, you may deviate from this tutorial if you're ready to start building your own ARCL project and don't wish to build the example project that this tutorial is demonstrating.