Use "implementation" in build scripts when configuring Kotlin (KT-22571)

Currently "compile" is used when adding kotlin dependencies to build
scripts, which is deprecated.
This commit is contained in:
Juan Chen
2018-07-09 15:49:33 -07:00
committed by Nikolay Krasko
parent 76a3c58aaf
commit 7aa195b017
21 changed files with 21 additions and 21 deletions
@@ -29,7 +29,7 @@ android {
dependencies {
compile 'com.android.support:support-v4:13.0.0'
compile "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
}
// VERSION: $VERSION$