Skip to content

Commit 18ecc9f

Browse files
author
Mark Fine
committed
ARCore Android SDK v1.50.0
1 parent 7c9122a commit 18ecc9f

File tree

22 files changed

+181
-127
lines changed

22 files changed

+181
-127
lines changed

LICENSE

Lines changed: 49 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3947,8 +3947,22 @@ TCMalloc
39473947
limitations under the License.
39483948

39493949
*******************************************************************************
3950-
Tink
3950+
examples
39513951
*******************************************************************************
3952+
===============================================================================
3953+
3954+
All files in the following folders:
3955+
- third_party/arcore/ar/core/c_api/arcore_c_api.h
3956+
- third_party/arcore/java/com/google/ar/
3957+
- third_party/arcore/unity/arcore_extensions/Assets/GoogleARCoreExtensions/
3958+
3959+
are licensed as follows:
3960+
ARCore Additional Terms of Service
3961+
3962+
All other files are licensed as follows:
3963+
Apache License Version 2.0
3964+
3965+
===============================================================================
39523966

39533967
Apache License
39543968
Version 2.0, January 2004
@@ -4152,6 +4166,40 @@ Tink
41524166
See the License for the specific language governing permissions and
41534167
limitations under the License.
41544168

4169+
===============================================================================
4170+
4171+
ARCore Additional Terms of Service
4172+
4173+
Last modified: May 11, 2022
4174+
4175+
To use ARCore (including the ARCore SDK, APIs, other developer services, and
4176+
associated software and documentation) (collectively, "APIs"), you must accept
4177+
(1) the Google APIs Terms of Service, and (2) these ARCore Additional Terms of
4178+
Service (the "Additional Terms"). If these Additional Terms conflict with the
4179+
Google APIs Terms of Service, these Additional Terms will govern for your use of
4180+
ARCore.
4181+
4182+
Terms of Service and Privacy Policy The terms of service for your API Client
4183+
(e.g., your app) will (1) notify end users that the API Client includes ARCore
4184+
functionality provided by Google; and (2) state that use of ARCore functionality
4185+
is subject to the then-current versions of the: (A) Google Terms of Service at
4186+
policies.google.com/terms; and (B) Google Privacy Policy at
4187+
google.com/policies/privacy.
4188+
4189+
User Privacy Disclosures You must follow the user privacy requirements
4190+
applicable to your API Client.
4191+
4192+
Child-Directed Applications You may not use ARCore Cloud Anchors or ARCore
4193+
Geospatial API in an API Client that would be deemed to be a “Web site or online
4194+
service directed to children” under the Children’s Online Privacy Protection Act
4195+
(COPPA).
4196+
4197+
No Re-Creating Google Products or Features You will not use the APIs to create a
4198+
product or service with features that are substantially similar to or that
4199+
re-create the features of another Google product or service (such as Live View
4200+
on Google Maps). Your product or service must contain substantial, independent
4201+
value and features beyond the Google products or services.
4202+
41554203
*******************************************************************************
41564204
java_annotations
41574205
*******************************************************************************

libraries/include/arcore_c_api.h

Lines changed: 66 additions & 60 deletions
Large diffs are not rendered by default.

samples/augmented_faces_java/app/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@ apply plugin: 'com.android.application'
1717

1818
android {
1919
namespace "com.google.ar.core.examples.java.augmentedfaces"
20-
compileSdkVersion 35
20+
compileSdkVersion 36
2121
defaultConfig {
2222
applicationId "com.google.ar.core.examples.java.augmentedfaces"
2323

2424
// AR Optional apps must declare minSdkVersion >= 14.
2525
// AR Required apps must declare minSdkVersion >= 24.
2626
minSdkVersion 24
27-
targetSdkVersion 35
27+
targetSdkVersion 36
2828
versionCode 1
2929
versionName '1.0'
3030
}
@@ -42,7 +42,7 @@ android {
4242

4343
dependencies {
4444
// ARCore (Google Play Services for AR) library.
45-
implementation 'com.google.ar:core:1.49.0'
45+
implementation 'com.google.ar:core:1.50.0'
4646

4747
// Obj - a simple Wavefront OBJ file loader
4848
// https://github.com/javagl/Obj

samples/augmented_image_c/app/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,14 @@ configurations { natives }
2626

2727
android {
2828
namespace "com.google.ar.core.examples.c.augmentedimage"
29-
compileSdkVersion 35
29+
compileSdkVersion 36
3030
defaultConfig {
3131
applicationId "com.google.ar.core.examples.c.augmentedimage"
3232

3333
// "AR Optional" apps must declare minSdkVersion >= 14.
3434
// "AR Required" apps must declare minSdkVersion >= 24.
3535
minSdkVersion 24
36-
targetSdkVersion 35
36+
targetSdkVersion 36
3737
versionCode 1
3838
versionName '1.0'
3939

@@ -69,8 +69,8 @@ android {
6969

7070
dependencies {
7171
// ARCore (Google Play Services for AR) library.
72-
implementation 'com.google.ar:core:1.49.0'
73-
natives 'com.google.ar:core:1.49.0'
72+
implementation 'com.google.ar:core:1.50.0'
73+
natives 'com.google.ar:core:1.50.0'
7474

7575
implementation 'androidx.appcompat:appcompat:1.1.0'
7676
implementation 'com.google.android.material:material:1.1.0'

samples/augmented_image_java/app/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@ apply plugin: 'com.android.application'
1717

1818
android {
1919
namespace "com.google.ar.core.examples.java.augmentedimage"
20-
compileSdkVersion 35
20+
compileSdkVersion 36
2121
defaultConfig {
2222
applicationId "com.google.ar.core.examples.java.augmentedimage"
2323

2424
// "AR Optional" apps must declare minSdkVersion >= 14.
2525
// "AR Required" apps must declare minSdkVersion >= 24.
2626
minSdkVersion 24
27-
targetSdkVersion 35
27+
targetSdkVersion 36
2828
versionCode 1
2929
versionName '1.0'
3030
}
@@ -42,7 +42,7 @@ android {
4242

4343
dependencies {
4444
// ARCore (Google Play Services for AR) library.
45-
implementation 'com.google.ar:core:1.49.0'
45+
implementation 'com.google.ar:core:1.50.0'
4646

4747
// Obj - a simple Wavefront OBJ file loader
4848
// https://github.com/javagl/Obj

samples/cloud_anchor_java/app/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@ apply plugin: 'com.android.application'
1717

1818
android {
1919
namespace "com.google.ar.core.examples.java.cloudanchor"
20-
compileSdkVersion 35
20+
compileSdkVersion 36
2121
defaultConfig {
2222
applicationId "com.google.ar.core.examples.java.cloudanchor"
2323

2424
// "AR Optional" apps must declare minSdkVersion >= 14.
2525
// "AR Required" apps must declare minSdkVersion >= 24.
2626
minSdkVersion 24
27-
targetSdkVersion 35
27+
targetSdkVersion 36
2828
versionCode 1
2929
versionName '1.0'
3030
}
@@ -42,7 +42,7 @@ android {
4242

4343
dependencies {
4444
// ARCore (Google Play Services for AR) library.
45-
implementation 'com.google.ar:core:1.49.0'
45+
implementation 'com.google.ar:core:1.50.0'
4646

4747
// Obj - a simple Wavefront OBJ file loader
4848
// https://github.com/javagl/Obj

samples/computervision_c/app/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,14 @@ configurations { natives }
2626

2727
android {
2828
namespace "com.google.ar.core.examples.c.computervision"
29-
compileSdkVersion 35
29+
compileSdkVersion 36
3030
defaultConfig {
3131
applicationId "com.google.ar.core.examples.c.computervision"
3232

3333
// "AR Optional" apps must declare minSdkVersion >= 14.
3434
// "AR Required" apps must declare minSdkVersion >= 24.
3535
minSdkVersion 24
36-
targetSdkVersion 35
36+
targetSdkVersion 36
3737
versionCode 1
3838
versionName '1.0'
3939

@@ -69,8 +69,8 @@ android {
6969

7070
dependencies {
7171
// ARCore (Google Play Services for AR) library.
72-
implementation 'com.google.ar:core:1.49.0'
73-
natives 'com.google.ar:core:1.49.0'
72+
implementation 'com.google.ar:core:1.50.0'
73+
natives 'com.google.ar:core:1.50.0'
7474

7575
implementation 'androidx.appcompat:appcompat:1.1.0'
7676
implementation 'com.google.android.material:material:1.1.0'

samples/computervision_java/app/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@ apply plugin: 'com.android.application'
1717

1818
android {
1919
namespace "com.google.ar.core.examples.java.computervision"
20-
compileSdkVersion 35
20+
compileSdkVersion 36
2121
defaultConfig {
2222
applicationId "com.google.ar.core.examples.java.computervision"
2323

2424
// "AR Optional" apps must declare minSdkVersion >= 14.
2525
// "AR Required" apps must declare minSdkVersion >= 24.
2626
minSdkVersion 24
27-
targetSdkVersion 35
27+
targetSdkVersion 36
2828
versionCode 1
2929
versionName '1.0'
3030
}
@@ -42,7 +42,7 @@ android {
4242

4343
dependencies {
4444
// ARCore (Google Play Services for AR) library.
45-
implementation 'com.google.ar:core:1.49.0'
45+
implementation 'com.google.ar:core:1.50.0'
4646

4747
// Obj - a simple Wavefront OBJ file loader
4848
// https://github.com/javagl/Obj

samples/geospatial_java/app/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@ apply plugin: 'com.android.application'
1717

1818
android {
1919
namespace "com.google.ar.core.examples.java.geospatial"
20-
compileSdkVersion 35
20+
compileSdkVersion 36
2121
defaultConfig {
2222
applicationId "com.google.ar.core.examples.java.geospatial"
2323

2424
// AR Optional apps must declare minSdkVersion >= 14.
2525
// AR Required apps must declare minSdkVersion >= 24.
2626
minSdkVersion 28
27-
targetSdkVersion 35
27+
targetSdkVersion 36
2828
versionCode 1
2929
versionName '1.0'
3030
}
@@ -42,7 +42,7 @@ android {
4242

4343
dependencies {
4444
// ARCore (Google Play Services for AR) library.
45-
implementation 'com.google.ar:core:1.49.0'
45+
implementation 'com.google.ar:core:1.50.0'
4646
implementation 'com.google.android.gms:play-services-location:19.0.1'
4747
implementation 'com.google.android.gms:play-services-auth:19.0.0'
4848

samples/hardwarebuffer_c/app/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,14 @@ configurations { natives }
2626

2727
android {
2828
namespace "com.google.ar.core.examples.c.helloarhardwarebuffer"
29-
compileSdkVersion 35
29+
compileSdkVersion 36
3030
defaultConfig {
3131
applicationId "com.google.ar.core.examples.c.helloarhardwarebuffer"
3232

3333
// "AR Optional" apps must declare minSdkVersion >= 14.
3434
// "AR Required" apps must declare minSdkVersion >= 27.
3535
minSdkVersion 27
36-
targetSdkVersion 35
36+
targetSdkVersion 36
3737
versionCode 1
3838
versionName '1.0'
3939

@@ -71,8 +71,8 @@ android {
7171

7272
dependencies {
7373
// ARCore (Google Play Services for AR) library.
74-
implementation 'com.google.ar:core:1.49.0'
75-
natives 'com.google.ar:core:1.49.0'
74+
implementation 'com.google.ar:core:1.50.0'
75+
natives 'com.google.ar:core:1.50.0'
7676

7777
implementation 'androidx.appcompat:appcompat:1.1.0'
7878
implementation 'com.google.android.material:material:1.1.0'

0 commit comments

Comments
 (0)