apply plugin: 'kotlin-android-extensions'.
当我在android studio预览中添加此扩展时,请给我这个错误 “错误:(1,0)没有找到ID为'kotlin-android-extensions'的插件。”。
我的构建gradle
apply plugin: 'com.android.application'
android {
compileSdkVersion 26
buildToolsVersion "26.0.1"
defaultConfig {
applicationId "com.example.mohamed_elbaz.myapplication"
minSdkVersion 15
targetSdkVersion 26
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:26.0.2'
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.1'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
}
答案 0 :(得分:34)
您发布的build.gradle代码段与应用模块中的配置类似。项目根目录中的build.gradle是什么样的?要添加kotlin插件依赖项,它应该如下所示:
buildscript {
ext.kotlin_version = '1.1.50'
repositories {
jcenter()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.0-beta6'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
google()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
重要的部分是添加kotlin插件的行classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
。
答案 1 :(得分:20)
要使用该插件,您必须将其添加到根build.gradle文件
中
buildscript {
ext.kotlin_version = '1.1.60'
repositories {
jcenter()
maven {
url 'https://maven.google.com'
}
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
答案 2 :(得分:0)
在Android Studio中,我们可以通过以下方式对其进行修复:_
在应用级分级中使用插件“域特定语言(DSL)”:
plugins {
id "org.jetbrains.kotlin.android.extensions" version "1.4.21"
}
仅此而已。
但是,如果您使用的是旧版插件应用程序,则在 App Level Gradle 中添加以下内容:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.4.21"
}
}
apply plugin: "org.jetbrains.kotlin.android.extensions"
希望这会有所帮助!