Skip to content

Commit

Permalink
ARCore iOS SDK 1.40.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Nanda Biradar committed Oct 13, 2023
1 parent 4520ec6 commit 5cd0d6b
Show file tree
Hide file tree
Showing 27 changed files with 1,981 additions and 149 deletions.
3 changes: 3 additions & 0 deletions Base/Sources/ARCore/ARCore.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,6 @@
#if __has_include(<ARCoreGARSession/ARCoreGARSession.h>)
#import <ARCoreGARSession/ARCoreGARSession.h>
#endif
#if __has_include(<ARCoreSemantics/ARCoreSemantics.h>)
#import <ARCoreSemantics/ARCoreSemantics.h>
#endif
4 changes: 2 additions & 2 deletions Examples/AugmentedFacesExample/Podfile
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'
4 changes: 2 additions & 2 deletions Examples/CloudAnchorExample/Podfile
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'
4 changes: 2 additions & 2 deletions Examples/GeospatialExample/Podfile
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'
4 changes: 2 additions & 2 deletions Examples/PersistentCloudAnchorExample/Podfile
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'
4 changes: 4 additions & 0 deletions Examples/SemanticsExample/Podfile
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'
28 changes: 28 additions & 0 deletions Examples/SemanticsExample/README
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.
Loading

0 comments on commit 5cd0d6b

Please sign in to comment.