This repository was archived by the owner on Nov 8, 2019. It is now read-only.
File tree Expand file tree Collapse file tree 8 files changed +6039
-6167
lines changed Expand file tree Collapse file tree 8 files changed +6039
-6167
lines changed Original file line number Diff line number Diff line change 6
6
.externalNativeBuild /
7
7
.gradle /
8
8
build /
9
- libraries /
9
+ libraries /headers
10
+ libraries /jni
10
11
11
12
# User configuration.
12
13
local.properties
13
14
14
15
# OS configurations.
15
- .DS_Store
16
+ .DS_Store
Load Diff Large diffs are not rendered by default.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ The headers and the .so for the GVR NDK live inside the sdk-base.aar. Before
2
+ compiling an NDK sample, the necessary code needs to be extracted from the aar
3
+ into the /libraries directory. Depending on the build system used by your app
4
+ you can copy this code or manually extract the headers and native libs.
5
+
6
+ See the root build.gradle file for an example extractNdk task.
Original file line number Diff line number Diff line change
1
+ <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3
+ <modelVersion>4.0.0</modelVersion>
4
+
5
+ <groupId>com.google.vr</groupId>
6
+ <artifactId>sdk-audio</artifactId>
7
+ <version>1.190.0</version>
8
+ <packaging>aar</packaging>
9
+
10
+ <name>Google VR SDK-Audio</name>
11
+ <url>https://developers.google.com/vr/</url>
12
+
13
+ <properties>
14
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
15
+ </properties>
16
+
17
+ <dependencies>
18
+ <dependency>
19
+ <groupId>com.google.vr</groupId>
20
+ <artifactId>sdk-base</artifactId>
21
+ <type>aar</type>
22
+ <version>1.190.0</version>
23
+ </dependency>
24
+ </dependencies>
25
+ </project>
Original file line number Diff line number Diff line change
1
+ <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3
+ <modelVersion>4.0.0</modelVersion>
4
+
5
+ <groupId>com.google.vr</groupId>
6
+ <artifactId>sdk-base</artifactId>
7
+ <version>1.190.0</version>
8
+ <packaging>aar</packaging>
9
+
10
+ <name>Google VR SDK-Base</name>
11
+ <url>https://developers.google.com/vr/</url>
12
+
13
+ <properties>
14
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
15
+ </properties>
16
+ </project>
You can’t perform that action at this time.
0 commit comments