This repository has been archived by the owner on Nov 8, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added missing libraries/*aars and updated LICENSE
- Loading branch information
Sameer Padala
committed
Jan 10, 2019
1 parent
a0b6a72
commit ffda940
Showing
8 changed files
with
6,039 additions
and
6,167 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
The headers and the .so for the GVR NDK live inside the sdk-base.aar. Before | ||
compiling an NDK sample, the necessary code needs to be extracted from the aar | ||
into the /libraries directory. Depending on the build system used by your app | ||
you can copy this code or manually extract the headers and native libs. | ||
|
||
See the root build.gradle file for an example extractNdk task. |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<groupId>com.google.vr</groupId> | ||
<artifactId>sdk-audio</artifactId> | ||
<version>1.190.0</version> | ||
<packaging>aar</packaging> | ||
|
||
<name>Google VR SDK-Audio</name> | ||
<url>https://developers.google.com/vr/</url> | ||
|
||
<properties> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
</properties> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>com.google.vr</groupId> | ||
<artifactId>sdk-base</artifactId> | ||
<type>aar</type> | ||
<version>1.190.0</version> | ||
</dependency> | ||
</dependencies> | ||
</project> |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<groupId>com.google.vr</groupId> | ||
<artifactId>sdk-base</artifactId> | ||
<version>1.190.0</version> | ||
<packaging>aar</packaging> | ||
|
||
<name>Google VR SDK-Base</name> | ||
<url>https://developers.google.com/vr/</url> | ||
|
||
<properties> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
</properties> | ||
</project> |