From d3b3470ac29fce89931b8fe588b9cbe15e7ebc99 Mon Sep 17 00:00:00 2001 From: Luke Freeman Date: Thu, 24 Jan 2019 09:27:12 -0800 Subject: [PATCH] fix deprecation warnings in example --- example/android/app/build.gradle | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/example/android/app/build.gradle b/example/android/app/build.gradle index 567d8a8..9da8896 100644 --- a/example/android/app/build.gradle +++ b/example/android/app/build.gradle @@ -28,15 +28,15 @@ android { } dependencies { - compile fileTree(dir: 'libs', include: ['*.jar']) + implementation fileTree(dir: 'libs', include: ['*.jar']) // kotlin - compile "org.jetbrains.kotlin:kotlin-stdlib-jdk7:${versions.kotlin}" + implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:${versions.kotlin}" // google - compile "com.android.support:appcompat-v7:${versions.googleSupport}" - compile "com.android.support:support-v13:${versions.googleSupport}" - compile "com.android.support:support-v4:${versions.googleSupport}" + implementation "com.android.support:appcompat-v7:${versions.googleSupport}" + implementation "com.android.support:support-v13:${versions.googleSupport}" + implementation "com.android.support:support-v4:${versions.googleSupport}" // testing - androidTestCompile "com.android.support:support-annotations:${versions.googleSupport}" - androidTestCompile 'com.android.support.test:runner:1.0.1' - androidTestCompile 'com.android.support.test:rules:1.0.1' + androidTestImplementation "com.android.support:support-annotations:${versions.googleSupport}" + androidTestImplementation 'com.android.support.test:runner:1.0.1' + androidTestImplementation 'com.android.support.test:rules:1.0.1' }