IntelliJでKotlin言語とGradleビルドを使用するアプリに取り組んでいますIDEA IDE。次のエラーが発生します:
Exception in thread "main" kotlin.jvm.KotlinReflectionNotSupportedError: Kotlin reflection implementation is not found at runtime. Make sure you have kotlin-reflect.jar in the classpath
at kotlin.jvm.internal.ClassReference.error(ClassReference.kt:86)
at kotlin.jvm.internal.ClassReference.getQualifiedName(ClassReference.kt:26)
at WorkerKt.main(Worker.kt:62)
次の回答で述べたように依存関係を含めました gradleにkotlin-reflect依存関係を追加
Libsフォルダーにjarファイルを追加しても、実行時にエラーが発生します。
私のGradleファイルは以下の通りです:
group 'com.working.workerhelp'
version '1.0-SNAPSHOT'
buildscript {
ext.kotlin_version = '1.2.21'
repositories {
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
apply plugin: 'kotlin'
repositories {
mavenCentral()
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile "org.jetbrains.kotlin:kotlin-stdlib-jre8:$kotlin_version"
compile "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
testCompile "org.jetbrains.kotlin:kotlin-test:$kotlin_version"
}
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
}
Gradleビルド用に構成する必要があるものはありますか、それとも何か不足していますか?
build.gradle(Module:app)
にimplementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
を追加
プロジェクトレベルからcompile "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
を削除build.gradle