Skip to content

Commit e271aa3

Browse files
committed
ARCore Android SDK v1.30.0
1 parent 6b01498 commit e271aa3

File tree

44 files changed

+2086
-51
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+2086
-51
lines changed

LICENSE

Lines changed: 2035 additions & 0 deletions
Large diffs are not rendered by default.

libraries/include/arcore_c_api.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2421,7 +2421,7 @@ ArStatus ArSession_update(ArSession *session, ArFrame *out_frame);
24212421
/// @return @c #AR_SUCCESS or any of:
24222422
/// - @c #AR_ERROR_NOT_TRACKING
24232423
/// - @c #AR_ERROR_SESSION_PAUSED
2424-
/// - @c #AR_CLOUD_ANCHOR_STATE_ERROR_RESOURCE_EXHAUSTED
2424+
/// - @c #AR_ERROR_RESOURCE_EXHAUSTED
24252425
ArStatus ArSession_acquireNewAnchor(ArSession *session,
24262426
const ArPose *pose,
24272427
ArAnchor **out_anchor);

samples/augmented_faces_java/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ android {
2626

2727
dependencies {
2828
// ARCore (Google Play Services for AR) library.
29-
implementation 'com.google.ar:core:1.29.0'
29+
implementation 'com.google.ar:core:1.30.0'
3030

3131
// Obj - a simple Wavefront OBJ file loader
3232
// https://github.com/javagl/Obj

samples/augmented_faces_java/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ buildscript {
66
mavenCentral()
77
}
88
dependencies {
9-
classpath 'com.android.tools.build:gradle:4.1.1'
9+
classpath 'com.android.tools.build:gradle:7.0.4'
1010
// NOTE: Do not place your application dependencies here; they belong
1111
// in the individual module build.gradle files
1212
}

samples/augmented_faces_java/gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-6.5.1-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.0.2-all.zip

samples/augmented_image_c/app/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@ android {
5353

5454
dependencies {
5555
// ARCore (Google Play Services for AR) library.
56-
implementation 'com.google.ar:core:1.29.0'
57-
natives 'com.google.ar:core:1.29.0'
56+
implementation 'com.google.ar:core:1.30.0'
57+
natives 'com.google.ar:core:1.30.0'
5858

5959
implementation 'androidx.appcompat:appcompat:1.1.0'
6060
implementation 'com.google.android.material:material:1.1.0'
@@ -82,7 +82,7 @@ task extractNativeLibraries() {
8282
}
8383

8484
tasks.whenTaskAdded {
85-
task-> if (task.name.contains("external") && !task.name.contains("Clean")) {
85+
task -> if ((task.name.contains("external") || task.name.contains("CMake")) && !task.name.contains("Clean")) {
8686
task.dependsOn(extractNativeLibraries)
8787
}
8888
}

samples/augmented_image_c/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ buildscript {
66
mavenCentral()
77
}
88
dependencies {
9-
classpath 'com.android.tools.build:gradle:4.1.1'
9+
classpath 'com.android.tools.build:gradle:7.0.4'
1010
// NOTE: Do not place your application dependencies here; they belong
1111
// in the individual module build.gradle files
1212
}

samples/augmented_image_c/gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-6.5.1-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.0.2-all.zip

samples/augmented_image_java/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ android {
2626

2727
dependencies {
2828
// ARCore (Google Play Services for AR) library.
29-
implementation 'com.google.ar:core:1.29.0'
29+
implementation 'com.google.ar:core:1.30.0'
3030

3131
// Obj - a simple Wavefront OBJ file loader
3232
// https://github.com/javagl/Obj

samples/augmented_image_java/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ buildscript {
66
mavenCentral()
77
}
88
dependencies {
9-
classpath 'com.android.tools.build:gradle:4.1.1'
9+
classpath 'com.android.tools.build:gradle:7.0.4'
1010
// NOTE: Do not place your application dependencies here; they belong
1111
// in the individual module build.gradle files
1212
}

0 commit comments

Comments
 (0)