Skip to content

Instantly share code, notes, and snippets.

@nrohmen
Created May 15, 2019 08:11
Show Gist options
  • Save nrohmen/a26991032e26c2118a919ac97da041c1 to your computer and use it in GitHub Desktop.
Save nrohmen/a26991032e26c2118a919ac97da041c1 to your computer and use it in GitHub Desktop.
playing kotlin dsl
//from:
apply plugin: "com.android.application"
apply plugin: "kotlin-android"
apply plugin: "kotlin-android-extensions"
//to:
plugins{
id("com.android.application")
kotlin("android")
kotlin("android.extensions")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment