Skip to content

Commit

Permalink
Merge pull request #1000 from rahul27/release_v3.1
Browse files Browse the repository at this point in the history
v3.1 : Update the template IO devices to use framework v3.1
  • Loading branch information
rahul27 authored Dec 28, 2016
2 parents baf7749 + 2b2ae68 commit 1108119
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 4 deletions.
10 changes: 8 additions & 2 deletions GVRf/Extensions/3DCursor/IODevices/io_hand_template/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
apply plugin: 'com.android.library'

repositories {
jcenter()
flatDir {
dirs '../../3DCursorLibrary/build/outputs/aar/',
'../../../../Framework/framework/build/outputs/aar/'
Expand Down Expand Up @@ -53,7 +54,12 @@ android {

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile(name:'3DCursorLibrary-debug', ext:'aar')
compile(name: 'framework-debug', ext: 'aar')
if(rootProject.useLocalDependencies) {
compile(name: 'framework-debug', ext: 'aar')
compile(name: '3DCursorLibrary-debug', ext: 'aar')
} else {
compile 'org.gearvrf:framework:3.1.0'
compile 'org.gearvrf:3DCursorLibrary:3.1.0'
}
}

10 changes: 8 additions & 2 deletions GVRf/Extensions/3DCursor/IODevices/io_template/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@

apply plugin: 'com.android.library'
repositories {
jcenter()
flatDir {
dirs '../../3DCursorLibrary/build/outputs/aar/',
'../../../../Framework/framework/build/outputs/aar/'
Expand Down Expand Up @@ -49,7 +50,12 @@ android {

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile(name:'3DCursorLibrary-debug', ext:'aar')
compile(name: 'framework-debug', ext: 'aar')
if(rootProject.useLocalDependencies) {
compile(name: 'framework-debug', ext: 'aar')
compile(name: '3DCursorLibrary-debug', ext: 'aar')
} else {
compile 'org.gearvrf:framework:3.1.0'
compile 'org.gearvrf:3DCursorLibrary:3.1.0'
}
}

0 comments on commit 1108119

Please sign in to comment.