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" } }