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

Commit ffda940

Browse files
author
Sameer Padala
committed
Added missing libraries/*aars and updated LICENSE
1 parent a0b6a72 commit ffda940

8 files changed

+6039
-6167
lines changed

Diff for: .gitignore

+3-2
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,11 @@
66
.externalNativeBuild/
77
.gradle/
88
build/
9-
libraries/
9+
libraries/headers
10+
libraries/jni
1011

1112
# User configuration.
1213
local.properties
1314

1415
# OS configurations.
15-
.DS_Store
16+
.DS_Store

Diff for: LICENSE

+5,989-1
Large diffs are not rendered by default.

Diff for: NOTICE

-6,164
This file was deleted.

Diff for: libraries/README.md

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
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.

Diff for: libraries/sdk-audio-1.190.0.aar

22 Bytes
Binary file not shown.

Diff for: libraries/sdk-audio-1.190.0.pom

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
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>

Diff for: libraries/sdk-base-1.190.0.aar

4.69 MB
Binary file not shown.

Diff for: libraries/sdk-base-1.190.0.pom

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
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>

0 commit comments

Comments
 (0)