Replace "compile" by "implementation"

Configuration 'compile' in project ':barcode_scan' is deprecated. Use 'implementation' instead.

According to :
https://github.com/apptreesoftware/flutter_barcode_reader/issues/11
This commit is contained in:
Florian 2018-05-30 15:03:25 +02:00 committed by GitHub
parent eeea92e52f
commit 471f6c4a7e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -47,7 +47,7 @@ android {
}
dependencies {
compile 'org.jetbrains.kotlin:kotlin-stdlib-jre7:1.1.2-4'
compile 'me.dm7.barcodescanner:zxing:1.9.8'
compile 'com.android.support:design:27.1.1'
implementation 'org.jetbrains.kotlin:kotlin-stdlib-jre7:1.1.2-4'
implementation 'me.dm7.barcodescanner:zxing:1.9.8'
implementation 'com.android.support:design:27.1.1'
}