apply plugin: 'kotlin-Android-extensions'.
Android studioプレビューでこの拡張機能を追加すると、「Error:(1、0)Plugin with id 'kotlin-Android-extensions' not found。」というエラーが表示されます。
私のビルドグラドル
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'
}
投稿した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"
行です。
プラグインを使用するには、ルート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"
}
}