-
Notifications
You must be signed in to change notification settings - Fork 88
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Nanda Biradar
committed
Oct 13, 2023
1 parent
4520ec6
commit 5cd0d6b
Showing
27 changed files
with
1,981 additions
and
149 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
target 'AugmentedFacesExample' | ||
use_frameworks! | ||
platform :ios, '11.0' | ||
pod 'ARCore/AugmentedFaces', '~> 1.39.0' | ||
platform :ios, '12.0' | ||
pod 'ARCore/AugmentedFaces', '~> 1.40.0' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
target 'CloudAnchorExample' | ||
use_frameworks! | ||
platform :ios, '11.0' | ||
pod 'ARCore/CloudAnchors', '~> 1.39.0' | ||
platform :ios, '12.0' | ||
pod 'ARCore/CloudAnchors', '~> 1.40.0' | ||
pod 'Firebase/Database', '~> 8.0' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
target 'GeospatialExample' | ||
use_frameworks! | ||
platform :ios, '11.0' | ||
pod 'ARCore/Geospatial', '~> 1.39.0' | ||
platform :ios, '12.0' | ||
pod 'ARCore/Geospatial', '~> 1.40.0' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
target 'PersistentCloudAnchorExample' | ||
use_frameworks! | ||
platform :ios, '11.0' | ||
pod 'ARCore/CloudAnchors', '~> 1.39.0' | ||
platform :ios, '12.0' | ||
pod 'ARCore/CloudAnchors', '~> 1.40.0' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
target 'SemanticsExample' | ||
use_frameworks! | ||
platform :ios, '12.0' | ||
pod 'ARCore/Semantics', '~> 1.40.0' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# Semantics API sample app for iOS | ||
|
||
This sample app shows how to use the ARCore Scene Semantics API for iOS. | ||
|
||
# Setup | ||
|
||
## Install the SDK | ||
|
||
You can install the SDK using either CocoaPods or Swift Package Manager. | ||
|
||
### Installing the SDK using CocoaPods. | ||
|
||
Run the following command from the directory with Podfile: | ||
|
||
``` | ||
$ pod install | ||
``` | ||
|
||
Open the resulting `.xcworkspace` file (not the project file). | ||
|
||
### Installing the SDK using Swift Package Manager. | ||
|
||
Open the Xcode project file and add a dependency on the 'ARCoreSemantics' | ||
product of the ARCore package. | ||
|
||
## Change the bundle ID | ||
|
||
Change the app's bundle ID so you can sign the app with your development team. |
Oops, something went wrong.