switching from apply plugin to pluins {}

following this migration guide:
https://guides.gradle.org/migrating-build-logic-from-groovy-to-kotlin/
This commit is contained in:
soloturn 2019-05-26 11:19:09 +02:00 committed by Isaac Hutt
parent a0977ce446
commit a43e631de0

View File

@ -22,8 +22,10 @@ buildscript {
}
}
apply plugin: "com.android.application"
apply plugin: "checkstyle"
plugins {
id("com.android.application")
id("checkstyle")
}
repositories {
google()