我是Kotlin
和Android Studio
的新用户,但至少我按照JetBrains网站上的说明进行操作,但我仍然在努力解决这些错误:
Error:(16, 0) Extension with name 'android' does not exist.
Currently registered extension names: [ext, kotlin]
答案 0 :(得分:2)
请参阅https://kotlinlang.org/docs/reference/using-gradle.html#targeting-android
buildscript {
ext.kotlin_version = '<version to use>'
...
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
看起来你错过了
apply plugin: 'com.android.application'
答案 1 :(得分:-1)
Android Studio 2.3.3不支持kotlin sdk 下载android studio 3.0
https://developer.android.com/studio/preview/index.html
答案 2 :(得分:-2)
谷歌已经宣布Kotlin支持Android Studio 3.0 +。 Canary channel中提供了Android Studio 3.0。尝试使用Android Studio 3.0 Canary来获得Kotlin Android语言的适当支持和轻松。