Skip to content
This repository was archived by the owner on Nov 8, 2019. It is now read-only.

Commit f841407

Browse files
author
Noel Victor
committed
1.170.0
1 parent cf95fd0 commit f841407

86 files changed

Lines changed: 143 additions & 4998 deletions

File tree

Some content is hidden

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

apks/controller_emulator.apk

132 KB
Binary file not shown.

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,13 @@ task clean(type: Delete) {
3535
// The dependencies for NDK builds live inside the .aar files so they need to
3636
// be extracted before NDK targets can build.
3737
task extractAudioSo(type: Copy) {
38-
from zipTree("${project.rootDir}/libraries/sdk-audio-1.160.0.aar")
38+
from zipTree("${project.rootDir}/libraries/sdk-audio-1.170.0.aar")
3939
into "${project.rootDir}/libraries/"
4040
include "jni/**/libgvr_audio.so"
4141
}
4242

4343
task extractGvrSo(type: Copy) {
44-
from zipTree("${project.rootDir}/libraries/sdk-base-1.160.0.aar")
44+
from zipTree("${project.rootDir}/libraries/sdk-base-1.170.0.aar")
4545
into "${project.rootDir}/libraries/"
4646
include "jni/**/libgvr.so"
4747
}

gradle/wrapper/gradle-wrapper.jar

84 Bytes
Binary file not shown.

gradlew.bat

Lines changed: 84 additions & 84 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

libraries/headers/vr/gvr/capi/include/gvr_gesture.h

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,9 @@ extern "C" {
4040
/// If you are writing C++ code, you might prefer to use the C++ wrapper rather
4141
/// than implement this C API directly.
4242
///
43+
/// If you are using multiple controllers, you will need to create multiple
44+
/// gvr_gesture_context objects, one for each controller.
45+
///
4346
/// Example API usage:
4447
///
4548
/// Initialization:
@@ -216,6 +219,9 @@ typedef gvr_gesture Gesture;
216219
/// calls to C calls provided by this wrapper runs entirely in the client's
217220
/// binary and is compiled by the client's compiler.
218221
///
222+
/// If you are using multiple controllers, you will need to create multiple
223+
/// GestureApi objects, one for each controller.
224+
///
219225
/// Methods in this class are only documented insofar as the C++ wrapping logic
220226
/// is concerned; for information about the method itself, please refer to the
221227
/// corresponding function in the C API.

libraries/headers/vr/gvr/capi/include/gvr_version.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,14 @@ extern "C" {
2323
/// A string representation of the current GVR build version. This is of
2424
/// the form "MAJOR.MINOR.PATCH". Note that this may differ from the runtime
2525
/// GVR version as reported by gvr_get_version_string().
26-
#define GVR_SDK_VERSION_STRING "1.160.0"
26+
#define GVR_SDK_VERSION_STRING "1.170.0"
2727

2828
/// Semantic components for the current GVR build version. Note that these
2929
/// values may differ from the runtime GVR version as reported by
3030
/// gvr_get_version().
3131
enum {
3232
GVR_SDK_MAJOR_VERSION = 1,
33-
GVR_SDK_MINOR_VERSION = 160,
33+
GVR_SDK_MINOR_VERSION = 170,
3434
GVR_SDK_PATCH_VERSION = 0,
3535
};
3636

libraries/sdk-audio-1.160.0.aar

-1.25 MB
Binary file not shown.

libraries/sdk-audio-1.170.0.aar

1.21 MB
Binary file not shown.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>com.google.vr</groupId>
66
<artifactId>sdk-audio</artifactId>
7-
<version>1.160.0</version>
7+
<version>1.170.0</version>
88
<packaging>aar</packaging>
99

1010
<name>Google VR SDK-Audio</name>
@@ -19,7 +19,7 @@
1919
<groupId>com.google.vr</groupId>
2020
<artifactId>sdk-base</artifactId>
2121
<type>aar</type>
22-
<version>1.160.0</version>
22+
<version>1.170.0</version>
2323
</dependency>
2424
</dependencies>
2525
</project>

libraries/sdk-base-1.160.0.aar

-2.66 MB
Binary file not shown.

0 commit comments

Comments
 (0)