Setup Kotlin for Android Studio

Since most of my articles are using code in Kotlin, I thought perhaps would be appropriate for me to introduce the simple steps for setting up Kotlin in Android Studio. Hopes this would encourage you to at least set it up if you haven’t, so that you could experiment and test whenever you like.

One great news of moving to Kotlin is, you do not need to start from a new project. Your could add it to your existing Java Android project. The language is interoperaable with Java. So you could use my steps below either for a new or existing project.

Prerequisite

This is assuming you already have Android Studio (version 2.2 at the time of writing), its Android SDK (version 24) and Java SDK (at least 7) installed.

Step 1: Setup the Kotlin Plugin in Android Studio

In order to ensure Android Studio support Kotlin, the first thing is to install the Kotlin Plugin for your Android Studio.

Android Studio → Preferences… →Plugins → Browse Repository → type “Kotlin” in search box → install

--

--