Outdated Kotlin Runtimeワーニングが出ました。Intellij ideaの画面ですが、おそらくAndroid Studioも同じでしょう。
Your version of Kotlin runtime in 'Gradle: org.jetbrains.kotlin:kotlin-stdlib:1.1.3-2' library is 1.1.3-2, while plugin version is 1.1.4-release-IJ2017.2-3. Runtime library should be updated to avoid compatibility problems.
ここで、Update Runtimeボタンをクリックしてしてみましたが、次のメッセージが表示されるだけです。
Automatic library version update for Gradle projects is currently unsupported. Please update your build.gradle manually
この場合はbuild.gradleファイルを開き、手動でバージョンを上げます。
ext.kotlin_version = '1.1.3-2'
となっている所を
ext.kotlin_version = '1.1.4-3'
とします。
最新のバージョンはリポジトリページで見つけることができます。
これでOutdated Kotlin Runtimeワーニングが消えるはずです。