Skip to content

Commit

Permalink
gradle: silence deprecation warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
liaxim committed Jun 19, 2018
1 parent c1a1020 commit 04afe46
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 18 deletions.
12 changes: 6 additions & 6 deletions GVRf/Framework/backend_daydream/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -59,12 +59,12 @@ project.ext.jomlVersion = "1.9.3-SNAPSHOT"
project.ext.daydreamVersion = '1.130.0'

dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile fileTree(include: ['*.jar'], dir: 'src/main/libs')
compile "com.google.vr:sdk-base:${daydreamVersion}"
compile "com.google.vr:sdk-controller:${daydreamVersion}"
compile project(':framework')
compile "org.joml:joml-android:${jomlVersion}"
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation fileTree(include: ['*.jar'], dir: 'src/main/libs')
implementation "com.google.vr:sdk-base:${daydreamVersion}"
implementation "com.google.vr:sdk-controller:${daydreamVersion}"
implementation project(':framework')
implementation "org.joml:joml-android:${jomlVersion}"
}

clean {}.doLast {
Expand Down
8 changes: 4 additions & 4 deletions GVRf/Framework/backend_monoscopic/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -122,10 +122,10 @@ android {
project.ext.jomlVersion = "1.9.1-SNAPSHOT"

dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile fileTree(include: ['*.jar'], dir: 'src/main/libs')
compile project(':framework')
compile "org.joml:joml-android:${jomlVersion}"
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation fileTree(include: ['*.jar'], dir: 'src/main/libs')
implementation project(':framework')
implementation "org.joml:joml-android:${jomlVersion}"
}

clean {}.doLast {
Expand Down
8 changes: 4 additions & 4 deletions GVRf/Framework/backend_oculus/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -124,10 +124,10 @@ android {
project.ext.jomlVersion = "1.9.3-SNAPSHOT"

dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile fileTree(include: ['*.jar'], dir: 'src/main/libs')
compile project(':framework')
compile "org.joml:joml-android:${jomlVersion}"
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation fileTree(include: ['*.jar'], dir: 'src/main/libs')
implementation project(':framework')
implementation "org.joml:joml-android:${jomlVersion}"
}

clean {}.doLast {
Expand Down
8 changes: 4 additions & 4 deletions GVRf/Framework/framework/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -115,10 +115,10 @@ project.ext.jomlVersion = "1.9.3-SNAPSHOT"
project.ext.gsonVersion = '2.8.2'

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile fileTree(dir: 'src/main/libs', include: ['*.jar'])
compile "org.joml:joml-android:${jomlVersion}"
compile "com.google.code.gson:gson:$gsonVersion"
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation fileTree(dir: 'src/main/libs', include: ['*.jar'])
api "org.joml:joml-android:${jomlVersion}"
implementation "com.google.code.gson:gson:$gsonVersion"
}

clean {}.doLast {
Expand Down

0 comments on commit 04afe46

Please sign in to comment.