OLD | NEW |
1 Name: Google VR SDK | 1 Name: Google VR SDK |
2 Short Name: gvr | 2 Short Name: gvr |
3 URL: https://github.com/googlevr/gvr-android-sdk | 3 URL: https://github.com/googlevr/gvr-android-sdk |
4 Version: 1.0.0 | 4 Version: 1.0.0 |
5 Date: 23 Sep 2016 | 5 Date: 23 Sep 2016 |
6 Revision: 25e7e14413229d4644a66be77e8f8ddeb3f91fe7 | 6 Revision: 25e7e14413229d4644a66be77e8f8ddeb3f91fe7 |
7 License: Apache 2.0 | 7 License: Apache 2.0 |
8 License File: LICENSE | 8 License File: LICENSE |
9 Security Critical: yes | 9 Security Critical: yes |
10 | 10 |
11 Description: | 11 Description: |
12 The Google VR SDK for Android supports both Daydream and Cardboard, including a | 12 The Google VR SDK for Android supports both Daydream and Cardboard, including a |
13 simple API used for creating apps inserted into Cardboard viewers, and the more | 13 simple API used for creating apps inserted into Cardboard viewers, and the more |
14 complex API for supporting Daydream-ready phones and the Daydream controller. | 14 complex API for supporting Daydream-ready phones and the Daydream controller. |
15 | 15 |
16 Local Modifications: | 16 Local Modifications: |
17 None | 17 Only header files in NDK are used. Due to binary size concern, we have decided |
| 18 to use a static shim library instead of the shared library that comes with |
| 19 this checkout. The static libraries are downloaded from a public storage through |
| 20 gclient sync. Currently, the static libraries needs a newer version of |
| 21 common_library.aar than the one provided by this checkout. So we also download |
| 22 it from the same public storage. Once the version on github catches up, we will |
| 23 remove common_library.aar. |
| 24 All JNI calls in the static library also needs to be manually registered. So |
| 25 we have 3 jni related files. These files were generated by |
| 26 base/android/jni_generator/jni_generator.py from Java files. Modifications to |
| 27 these generated files are documented in the files. |
OLD | NEW |