From 04afe46fced161fcc7f77834b7f4ed9cd115aee1 Mon Sep 17 00:00:00 2001 From: Mihail Marinov Date: Tue, 19 Jun 2018 08:14:22 -0700 Subject: [PATCH] gradle: silence deprecation warnings --- GVRf/Framework/backend_daydream/build.gradle | 12 ++++++------ GVRf/Framework/backend_monoscopic/build.gradle | 8 ++++---- GVRf/Framework/backend_oculus/build.gradle | 8 ++++---- GVRf/Framework/framework/build.gradle | 8 ++++---- 4 files changed, 18 insertions(+), 18 deletions(-) diff --git a/GVRf/Framework/backend_daydream/build.gradle b/GVRf/Framework/backend_daydream/build.gradle index 203ece654..c033d1209 100755 --- a/GVRf/Framework/backend_daydream/build.gradle +++ b/GVRf/Framework/backend_daydream/build.gradle @@ -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 { diff --git a/GVRf/Framework/backend_monoscopic/build.gradle b/GVRf/Framework/backend_monoscopic/build.gradle index 45e88ab82..dd0130c19 100644 --- a/GVRf/Framework/backend_monoscopic/build.gradle +++ b/GVRf/Framework/backend_monoscopic/build.gradle @@ -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 { diff --git a/GVRf/Framework/backend_oculus/build.gradle b/GVRf/Framework/backend_oculus/build.gradle index b5ed4a329..058c37016 100755 --- a/GVRf/Framework/backend_oculus/build.gradle +++ b/GVRf/Framework/backend_oculus/build.gradle @@ -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 { diff --git a/GVRf/Framework/framework/build.gradle b/GVRf/Framework/framework/build.gradle index 699c4369f..f27a787f8 100755 --- a/GVRf/Framework/framework/build.gradle +++ b/GVRf/Framework/framework/build.gradle @@ -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 {