Реализация отражения Kotlin не найдена во время выполнения при импорте gradle - PullRequest
0 голосов
/ 14 декабря 2018

Я пытаюсь использовать отражения в моем проекте для Android, но я получаю

kotlin.jvm.KotlinReflectionNotSupportedError: Kotlin reflection 
implementation is not found at runtime. Make sure you have kotlin- 
reflect.jar in the classpath

Странная часть в том, что она не работает, только когда я импортирую kotlin-рефлекция с помощью gradle.Если я добавлю .jar вручную в каталог libs, все будет работать нормально.Баночка с той же самой страницы maven, откуда я взял строку компиляции

уровень проекта:

// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
    ext.kotlin_version = '1.3.11'
    repositories {
        mavenCentral()
        google()

    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.4.0-alpha01'
        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
        classpath "org.jetbrains.kotlin:kotlin-android-extensions:$kotlin_version"

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        mavenCentral()
        google()

    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

Уровень модуля:

apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'

android {
    compileSdkVersion 28

    defaultConfig {
        minSdkVersion 15
        targetSdkVersion 28
        versionCode 1
        versionName "1.0"

        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"

    }

    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
        }
    }

}

dependencies {
    //I tried many variants of adding the library - the commented lines

    implementation fileTree(dir: 'libs', include: ['*.jar'])
    //testImplementation "org.jetbrains.kotlin:kotlin-reflect:1.3.11"
    implementation "org.jetbrains.kotlin:kotlin-reflect:1.3.11"
    implementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.11'

    testImplementation "org.jetbrains.kotlin:kotlin-test:1.3.11"
    //compile group: 'org.jetbrains.kotlin', name: 'kotlin-reflect', version: '1.3.11'
    //compile "org.jetbrains.kotlin:kotlin-reflect"

    implementation 'com.android.support:appcompat-v7:28.0.0'
    testImplementation 'junit:junit:4.13-beta-1'
    androidTestImplementation 'com.android.support.test:runner:1.0.2'
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
}

Простой тест I 'Я хочу запустить

class Reflections {

    class A(val property: Int)

    @Test
    fun javaGetter() {
        println(
            A::property.getter.returnType
        )
    }

}

Я проверил другие вопросы в стеке, но мне не повезло с ответами на них.

Что я делаю не так, что мне не хватает?

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...