From bd6758626dc23b23b646e4ba6a8bc499b7e04a13 Mon Sep 17 00:00:00 2001 From: Collin Smith Date: Mon, 24 Jun 2019 03:17:34 -0700 Subject: [PATCH] Fixed deprecation warning in android gradle 3.0 --- build.gradle | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/build.gradle b/build.gradle index 45616af0..1f332f54 100644 --- a/build.gradle +++ b/build.gradle @@ -150,15 +150,15 @@ project(":android") { configurations { natives } dependencies { - compile project(":core") - compile "com.badlogicgames.gdx:gdx-backend-android:$gdxVersion" + implementation project(":core") + implementation "com.badlogicgames.gdx:gdx-backend-android:$gdxVersion" natives "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-armeabi" natives "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-armeabi-v7a" natives "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-arm64-v8a" natives "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-x86" natives "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-x86_64" - compile "com.badlogicgames.gdx:gdx-controllers:$gdxVersion" - compile "com.badlogicgames.gdx:gdx-controllers-android:$gdxVersion" + implementation "com.badlogicgames.gdx:gdx-controllers:$gdxVersion" + implementation "com.badlogicgames.gdx:gdx-controllers-android:$gdxVersion" } repositories { @@ -166,7 +166,7 @@ project(":android") { } dependencies { - compile "org.sufficientlysecure:openpgp-api:12.0" + implementation "org.sufficientlysecure:openpgp-api:12.0" } }