android - 排毒 - 无法初始化类 DefaultKotlinSourceSetKt

标签 android react-native kotlin detox

我已按照此处的 Android 排毒指南安装到我的 react-native 项目 - https://github.com/wix/Detox/blob/master/docs/Introduction.Android.md .但是在运行 react-native run-android 构建应用程序之后。我在评估项目 :detox:

时遇到以下错误
1: Task failed with an exception.
-----------
* Where:
Build file 'C:\Users\brian\Documents\Projects\react-native-prototyping\node_modules\detox\android\detox\build.gradle' line: 2

* What went wrong:
A problem occurred evaluating project ':detox'.
> Could not initialize class org.jetbrains.kotlin.gradle.plugin.sources.DefaultKotlinSourceSetKt

我查看了他们的问题跟踪器,但没有看到相关问题。查看围绕 Kotlin 的类似问题,似乎我的 kotlin 和 gradle 版本之间存在冲突。但我不确定如何确定要使用的正确版本。我还在android文件夹里做了一个./gradlew clean也没有用。

问题:

如何解决“无法初始化类 ..sources.DefaultKotlinSourceSetKt”错误?

我的 gradle 和包设置的一些细节如下:

"devDependencies": {
        "detox": "^16.5.0",
    },

root build.gradle:

buildscript {
    ext {
        buildToolsVersion = "28.0.3"
        minSdkVersion = 18
        compileSdkVersion = 28
        targetSdkVersion = 28
        kotlinVersion = '1.3.0'

    }
    repositories {
        google()
        jcenter()
    }
    dependencies {
        classpath("com.android.tools.build:gradle:3.5.2")
        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

应用程序/build.gradle:

android {
    compileSdkVersion rootProject.ext.compileSdkVersion

    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }

    defaultConfig {
        applicationId "com.testapp"
        minSdkVersion rootProject.ext.minSdkVersion
        compileSdkVersion rootProject.ext.compileSdkVersion
        targetSdkVersion rootProject.ext.targetSdkVersion
        // detox automated tests config
        // This will later be used to control the test apk build type
        testBuildType System.getProperty('testBuildType', 'debug')  
        testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
    }
    splits {
        abi {
            reset()
            enable enableSeparateBuildPerCPUArchitecture
            universalApk false  // If true, also generate a universal APK
            include "armeabi-v7a", "x86", "arm64-v8a", "x86_64"
        }
    }
    signingConfigs {
        debug {
            storeFile file('debug.keystore')
            storePassword 'android'
            keyAlias 'androiddebugkey'
            keyPassword 'android'
        }
        release {
            storeFile file(System.getenv("KEYSTORE") ?: "keystore.jks")
            storePassword System.getenv("KEYSTORE_PASSWORD")
            keyAlias System.getenv("KEY_ALIAS")
            keyPassword System.getenv("KEY_PASSWORD")
        }
    }
    buildTypes {
        debug {
            signingConfig signingConfigs.debug
        }
        release {
            // Caution! In production, you need to generate your own keystore file.
            // see https://facebook.github.io/react-native/docs/signed-apk-android.
            signingConfig signingConfigs.release
            minifyEnabled enableProguardInReleaseBuilds
            proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
            // Detox-specific additions to pro-guard
            proguardFile "${rootProject.projectDir}/../node_modules/detox/android/detox/proguard-rules-app.pro"
        }
    }

    packagingOptions {
        pickFirst "lib/armeabi-v7a/libc++_shared.so"
        pickFirst "lib/arm64-v8a/libc++_shared.so"
        pickFirst "lib/x86/libc++_shared.so"
        pickFirst "lib/x86_64/libc++_shared.so"
    }



dependencies {
    implementation fileTree(dir: "libs", include: ["*.jar"])
    //noinspection GradleDynamicVersion
    implementation "com.facebook.react:react-native:+"  // From node_modules


    if (enableHermes) {
        def hermesPath = "../../node_modules/hermes-engine/android/";
        debugImplementation files(hermesPath + "hermes-debug.aar")
        releaseImplementation files(hermesPath + "hermes-release.aar")
    } else {
        implementation jscFlavor
    }

    androidTestImplementation(project(path: ":detox"))
}

最佳答案

原来我不得不在 build.gradle 中更改我的 kotlin 版本以匹配我的 gradle 版本 - buildscript。请参阅 - https://github.com/wix/Detox/blob/master/examples/demo-react-native/android/build.gradle

 {
    ext {
        buildToolsVersion = "28.0.3"
        minSdkVersion = 18
        compileSdkVersion = 28
        targetSdkVersion = 28
        kotlinVersion = '1.3.41'

    }
    repositories {
        google()
        jcenter()
    }
    dependencies {
        classpath("com.android.tools.build:gradle:3.5.2")
        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

关于android - 排毒 - 无法初始化类 DefaultKotlinSourceSetKt,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61714619/

相关文章:

javascript - 用于react-native旧项目的Redux工具包

kotlin - 带有 `val` 修饰符的 `final` 属性的目的是什么?

android - 如何使用使用回调的第三方库实现 CoroutineWorker?

java - android studio无法连接到本地主机WCF服务

android - 使用包含路径和查询参数的(深度)链接打开应用程序

php - 为什么我无法连接到我的数据库

android - AsyncTask 的内存泄漏

java - Android App就地更新

javascript - 当我将对象作为 Prop 传递给子组件时如何避免重新渲染?

android - HttpLoggingInterceptor 不使用改造 2 记录