clean up of plugin to use classpath so it can use the kotlin class instead of having to intercept in the settings.gradle

This commit is contained in:
CarlosEsco 2020-06-05 15:41:13 -04:00
parent 1978b9a62e
commit 4e0c97a120
4 changed files with 25 additions and 27 deletions

View file

@ -25,10 +25,12 @@ object AndroidVersions {
}
object BuildPluginsVersion {
const val AGP = "4.0.0"
const val GOOGLE_SERVICES = "4.3.3"
const val AGP = "com.android.tools.build:gradle:4.0.0"
const val KOTLIN = "1.3.72"
const val KOTLINTER = "2.3.2"
const val OSS_LICENSE = "0.10.2"
const val ANDROID_EXTENSIONS = "org.jetbrains.kotlin:kotlin-android-extensions:$KOTLIN"
const val KOTLIN_GRADLE = "org.jetbrains.kotlin:kotlin-gradle-plugin:$KOTLIN"
const val KOTLINTER = "org.jmailen.gradle:kotlinter-gradle:2.3.2"
const val GOOGLE_SERVICES = "com.google.gms:google-services:4.3.3"
const val OSS_LICENSE = "com.google.android.gms:oss-licenses-plugin:0.10.2"
const val VERSIONS_PLUGIN = "0.28.0"
}