summaryrefslogtreecommitdiff
path: root/sample
diff options
context:
space:
mode:
authorWesley Crick <wesley@microspec.com>2018-05-30 23:35:42 +0300
committerWesley Crick <wesley@microspec.com>2018-05-30 23:35:42 +0300
commit2af07f95cfffed9d8ff7a385e980255a3f2ef3ce (patch)
tree54a1300cfde346b7869bc3261e8b56a72857fe58 /sample
parentaec45c4f10e3769d7449bcb7b82b5d09689512a4 (diff)
downloadzxing-android-embedded-2af07f95cfffed9d8ff7a385e980255a3f2ef3ce.tar.xz
Gradle Update and SDK 27
Updated android support dependencies to 27.1.1. Update deprecated "compile" to "implementation".
Diffstat (limited to 'sample')
-rw-r--r--sample/build.gradle10
1 files changed, 5 insertions, 5 deletions
diff --git a/sample/build.gradle b/sample/build.gradle
index 632c1778..1b2579e4 100644
--- a/sample/build.gradle
+++ b/sample/build.gradle
@@ -57,12 +57,12 @@ android {
dependencies {
// If you use this from an external project, use the following instead:
// compile 'com.journeyapps:zxing-android-embedded:<version>'
- compile project(':zxing-android-embedded')
+ implementation project(':zxing-android-embedded')
// leakcanary is for development purposes only
// https://github.com/square/leakcanary
- compile 'com.android.support:appcompat-v7:25.3.1'
- compile 'com.android.support:support-v13:25.3.1'
- debugCompile 'com.squareup.leakcanary:leakcanary-android:1.5'
- releaseCompile 'com.squareup.leakcanary:leakcanary-android-no-op:1.5'
+ implementation 'com.android.support:appcompat-v7:27.1.1'
+ implementation 'com.android.support:support-v13:27.1.1'
+ debugImplementation 'com.squareup.leakcanary:leakcanary-android:1.5'
+ releaseImplementation 'com.squareup.leakcanary:leakcanary-android-no-op:1.5'
}