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

Commit

Permalink
Added missing libraries/*aars and updated LICENSE
Browse files Browse the repository at this point in the history
  • Loading branch information
Sameer Padala committed Jan 10, 2019
1 parent a0b6a72 commit ffda940
Show file tree
Hide file tree
Showing 8 changed files with 6,039 additions and 6,167 deletions.
5 changes: 3 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,11 @@
.externalNativeBuild/
.gradle/
build/
libraries/
libraries/headers
libraries/jni

# User configuration.
local.properties

# OS configurations.
.DS_Store
.DS_Store
5,990 changes: 5,989 additions & 1 deletion LICENSE

Large diffs are not rendered by default.

6,164 changes: 0 additions & 6,164 deletions NOTICE

This file was deleted.

6 changes: 6 additions & 0 deletions libraries/README.md
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 added libraries/sdk-audio-1.190.0.aar
Binary file not shown.
25 changes: 25 additions & 0 deletions libraries/sdk-audio-1.190.0.pom
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 added libraries/sdk-base-1.190.0.aar
Binary file not shown.
16 changes: 16 additions & 0 deletions libraries/sdk-base-1.190.0.pom
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>

0 comments on commit ffda940

Please sign in to comment.