Kotlin compiler pre-release problem in android studio IDE

I’m having problems with the project in Android Studio. I get a error message like this

Class ‘kotlin.Unit’ is compiled by a pre-release version of Kotlin and cannot be loaded by this version of the compiler

almost all of my program code in the project gets the same error message. even though it’s just a simple program code, like this

This error is expected for example if you use Kotlin 1.3.71 with Kotlin stdlib 1.4-M1, which is compiled by 1.4-M1 compiler (which is pre-release). What version of Kotlin is in your build.gradle? What does gradle dependencies show? Maybe pre-release stdlib got into your dependencies transitively. In that case you can try to force its version to 1.3.71: ResolutionStrategy - Gradle DSL Version 7.5.1

I’m sorry for being late in responding to you
I’m using Kotlin 1.3.71 in my IDE, but for my project I set kotlin version 1.3.21. I have a lot of modules in this project, I will show you my app gradle and dependencies gradle.
my app gradle

apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
apply plugin: 'com.google.gms.google-services'
apply plugin: 'io.fabric'

android {
    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }
    compileSdkVersion 28
    defaultConfig {
        applicationId "com.lumbunginovasi.ludesid"
        minSdkVersion 16
        targetSdkVersion 28
        versionCode 1
        versionName "1.0"
        multiDexEnabled true
        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
        versionNameSuffix 'default'
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }

    flavorDimensions 'version'
    productFlavors {
        cs10 {
            dimension 'version'
            minSdkVersion 19
            applicationId "com.lumbunginovasi.kepengbenang.pos"
            versionNameSuffix 'pos_cs10'
        }

        base {
            dimension 'version'
            minSdkVersion 16
            applicationId "com.lumbunginovasi.ludesid"
            versionNameSuffix 'base'
        }
    }
}

dependencies {
    implementation fileTree(include: ['*.jar'], dir: 'libs')
    implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
    implementation androidXDeps.appCompat
    implementation androidXDeps.constraintlayout
    implementation androidXDeps.material
    implementation coroutineDeps.retrofit
    implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0-alpha02'
    implementation 'androidx.appcompat:appcompat:1.0.2'
    implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'androidx.test:runner:1.3.0-alpha01'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0-alpha01'
    implementation coroutineDeps.core
    implementation coroutineDeps.android
    implementation 'androidx.multidex:multidex:2.0.1'
    implementation 'com.facebook.stetho:stetho:1.5.0'
    implementation 'com.facebook.stetho:stetho-okhttp3:1.5.0'
    implementation 'com.google.android.play:core:1.6.1'
    implementation project(':ludes_kasir')
    implementation project(':ludes_ui')
    implementation project(':ludes_core')
    implementation project(path: ':ludes_products')
    implementation project(path: ':ludes_api')
    implementation project(path: ':ludes_sugarORM')
    implementation project(path: ':ludes_account')
    implementation project(path: ':bluetoothprinter')
    implementation 'com.asksira.android:bsimagepicker:1.2.2'
    cs10Implementation project(path: ':pos_cs10')
    implementation project(path: ':internetservice')
    implementation 'com.google.gms:google-services:4.3.3'
    implementation 'com.crashlytics.sdk.android:crashlytics:2.10.1'
    implementation project(path: ':sync_transaction')
}

and this my dependecies gradle

ext {
    coroutineVersion = '1.+'

    coroutineDeps = [
            core : "org.jetbrains.kotlinx:kotlinx-coroutines-core:${coroutineVersion}",
            android : "org.jetbrains.kotlinx:kotlinx-coroutines-android:${coroutineVersion}",
            retrofit : 'com.jakewharton.retrofit:retrofit2-kotlin-coroutines-adapter:0.9.2'
    ]

    androidXDeps = [
            appCompat: 'androidx.appcompat:appcompat:1.1.0-rc01',
            constraintlayout: 'androidx.constraintlayout:constraintlayout:2.0.0-beta2',
            recycler: 'androidx.recyclerview:recyclerview:1.0.0-rc01',
            material: 'com.google.android.material:material:1.0.0-rc01'
    ]

    utilsLib = [
            picasso: 'com.squareup.picasso:picasso:2.71828',
            firebaseAuth: 'com.google.firebase:firebase-auth:16.1.0',
            playServiceAuth: 'com.google.android.gms:play-services-auth:16.0.1',
            firebaseUiAuth: 'com.firebaseui:firebase-ui-auth:4.1.0',
            facebookAuth: 'com.facebook.android:facebook-android-sdk:[4,5)',
            firestore: 'com.google.firebase:firebase-firestore:18.1.0',
            playCore: 'com.google.android.play:core:1.3.6'
    ]
}

Does it compile if you specify the version of stdlib explicitly?

implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.3.71"

What does ./gradlew dependencies show? Is it actually the version that gets used?

I’ve tried to specify the version of stdlib explicitly, but it doesn’t work.
and I’m sorry, I don’t understand where gradlew dependecies path location.

I mean the Gradle wrapper: The Gradle Wrapper
If you’re not using it in your project, you can execute gradle dependencies in the command line.

I tried to do gradle dependencies, and I get result:

Configure project :app
WARNING: API 'variant.getMergeResources()' is obsolete and has been replaced with 'variant.getMergeResourcesProvider()'.
It will be removed at the end of 2019.
For more information, see https://d.android.com/r/tools/task-configuration-avoidance.
To determine what is calling variant.getMergeResources(), use -Pandroid.debug.obsoleteApi=true on the command line to display more information.

Configure project :ludes_kasir
WARNING: The com.android.feature plugin is deprecated and will be removed in a future gradle plugin version. Please switch to using dynamic-features or libraries. For more information on converting your application to using Android App Bundles, please visit https://developer.android.com/topic/google-play-instant/feature-module-migration
WARNING: The com.android.feature plugin is deprecated and will be removed in a future gradle plugin version. Please switch to using dynamic-features or libraries. For more information on converting your application to using Android App Bundles, please visit https://developer.android.com/topic/google-play-instant/feature-module-migration

Configure project :ludes_products
WARNING: The com.android.feature plugin is deprecated and will be removed in a future gradle plugin version. Please switch to using dynamic-features or libraries. For more information on converting your application to using Android App Bundles, please visit https://developer.android.com/topic/google-play-instant/feature-module-migration
WARNING: The com.android.feature plugin is deprecated and will be removed in a future gradle plugin version. Please switch to using dynamic-features or libraries. For more information on converting your application to using Android App Bundles, please visit https://developer.android.com/topic/google-play-instant/feature-module-migration

Task :dependencies

------------------------------------------------------------
Root project
------------------------------------------------------------

No configurations

A web-based, searchable dependency report is available by adding the --scan option.

Deprecated Gradle features were used in this build, making it incompatible with Gradle 7.0.
Use '--warning-mode all' to show the individual deprecation warnings.
See https://docs.gradle.org/6.3/userguide/command_line_interface.html#sec:command_line_warnings

BUILD SUCCESSFUL in 4s
1 actionable task: 1 executed

Sorry, that’s not quite right. Assuming your main module is app and dependencies are declared in its build.gradle, you need to run gradle :app:dependencies.

this is the result

|    |    +--- com.scwang.smartrefresh:SmartRefreshLayout:1.1.0-andx-14
|    |    +--- com.scwang.smartrefresh:SmartRefreshHeader:1.1.0-andx-14
|    |    +--- androidx.legacy:legacy-support-v4:1.0.0 (*)
|    |    +--- com.github.bumptech.glide:glide:4.9.0
|    |    |    +--- com.github.bumptech.glide:gifdecoder:4.9.0
|    |    |    |    \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
|    |    |    +--- com.github.bumptech.glide:disklrucache:4.9.0
|    |    |    +--- com.github.bumptech.glide:annotations:4.9.0
|    |    |    +--- androidx.fragment:fragment:1.0.0 -> 1.2.0-alpha01 (*)
|    |    |    \--- androidx.vectordrawable:vectordrawable-animated:1.0.0 -> 1.1.0 (*)
|    |    +--- project :internetservice
|    |    |    +--- org.jetbrains.kotlin:kotlin-android-extensions-runtime:1.3.71 (*)
|    |    |    +--- androidx.appcompat:appcompat:1.1.0 (*)
|    |    |    +--- androidx.core:core-ktx:+ -> 1.3.0-rc01
|    |    |    |    +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.71 -> 1.4-M1 (*)
|    |    |    |    +--- androidx.annotation:annotation:1.1.0
|    |    |    |    \--- androidx.core:core:1.3.0-rc01 (*)
|    |    |    +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.3.71 (*)
|    |    |    +--- project :ludes_sugarORM
|    |    |    |    +--- org.jetbrains.kotlin:kotlin-android-extensions-runtime:1.3.71 (*)
|    |    |    |    +--- androidx.appcompat:appcompat:1.0.2 -> 1.1.0 (*)
|    |    |    |    +--- androidx.core:core-ktx:+ -> 1.3.0-rc01 (*)
|    |    |    |    +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.3.71 (*)
|    |    |    |    +--- com.github.satyan:sugar:1.5
|    |    |    |    \--- project :ludes_api (*)
|    |    |    \--- project :sync_transaction
|    |    |         +--- org.jetbrains.kotlin:kotlin-android-extensions-runtime:1.3.71 (*)
|    |    |         +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.3.71 (*)
|    |    |         +--- androidx.appcompat:appcompat:1.1.0 (*)
|    |    |         +--- androidx.core:core-ktx:1.1.0 -> 1.3.0-rc01 (*)
|    |    |         +--- project :ludes_sugarORM (*)
|    |    |         +--- project :ludes_api (*)
|    |    |         +--- project :ludes_core (*)
|    |    |         \--- com.squareup.retrofit2:retrofit:2.2.0 -> 2.6.1 (*)
|    |    \--- project :ludes_sugarORM (*)
|    +--- org.jetbrains.kotlin:kotlin-android-extensions-runtime:1.3.71 (*)
|    +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.3.71 (*)
|    +--- project :ludes_core (*)
|    +--- project :ludes_sugarORM (*)
|    +--- project :ludes_products
|    |    +--- androidx.appcompat:appcompat:1.0.2 -> 1.1.0 (*)
|    |    +--- androidx.constraintlayout:constraintlayout:1.1.3 -> 2.0.0-beta2 (*)
|    |    +--- project :ludes_ui (*)
|    |    +--- com.scwang.wave:MultiWaveHeader:1.0.0-alpha-1 (*)
|    |    +--- com.github.glomadrian:Grav:1.1
|    |    |    \--- androidx.appcompat:appcompat:1.0.0 -> 1.1.0 (*)
|    |    +--- org.jetbrains.kotlin:kotlin-android-extensions-runtime:1.3.71 (*)
|    |    +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.3.71 (*)
|    |    +--- project :ludes_core (*)
|    |    +--- project :ludes_api (*)
|    |    +--- androidx.appcompat:appcompat:1.1.0-rc01 -> 1.1.0 (*)
|    |    +--- androidx.constraintlayout:constraintlayout:2.0.0-beta2 (*)
|    |    +--- com.google.android.material:material:1.0.0-rc01 -> 1.0.0 (*)
|    |    +--- androidx.recyclerview:recyclerview:1.0.0-rc01 -> 1.0.0 (*)
|    |    +--- com.jakewharton.retrofit:retrofit2-kotlin-coroutines-adapter:0.9.2 (*)
|    |    +--- project :ludes_sugarORM (*)
|    |    +--- com.asksira.android:bsimagepicker:1.2.2
|    |    +--- com.github.bumptech.glide:glide:4.9.0 (*)
|    |    \--- project :internetservice (*)
|    +--- project :ludes_api (*)
|    +--- androidx.appcompat:appcompat:1.1.0-rc01 -> 1.1.0 (*)
|    +--- androidx.constraintlayout:constraintlayout:2.0.0-beta2 (*)
|    +--- androidx.recyclerview:recyclerview:1.0.0-rc01 -> 1.0.0 (*)
|    +--- com.google.android.material:material:1.0.0-rc01 -> 1.0.0 (*)
|    +--- com.squareup.picasso:picasso:2.71828 (*)
|    +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.+ -> 1.3.5-2-native-mt-1.4-M1 (*)
|    +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.+ -> 1.3.5-2-native-mt-1.4-M1 (*)
|    +--- androidx.cardview:cardview:1.0.0 (*)
|    +--- com.squareup.retrofit2:retrofit:2.2.0 -> 2.6.1 (*)
|    \--- project :internetservice (*)
+--- project :ludes_ui (*)
+--- project :ludes_core (*)
+--- project :ludes_products (*)
+--- project :ludes_api (*)
+--- project :ludes_sugarORM (*)
+--- project :ludes_account
|    +--- org.jetbrains.kotlin:kotlin-android-extensions-runtime:1.3.71 (*)
|    +--- project :ludes_core (*)
|    +--- project :ludes_api (*)
|    +--- androidx.appcompat:appcompat:1.0.2 -> 1.1.0 (*)
|    +--- androidx.constraintlayout:constraintlayout:1.1.3 -> 2.0.0-beta2 (*)
|    +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.3.71 (*)
|    \--- project :ludes_sugarORM (*)
+--- project :bluetoothprinter
|    +--- org.jetbrains.kotlin:kotlin-android-extensions-runtime:1.3.71 (*)
|    +--- project :ludes_core (*)
|    +--- project :ludes_api (*)
|    +--- project :ludes_ui (*)
|    +--- androidx.appcompat:appcompat:1.1.0-rc01 -> 1.1.0 (*)
|    +--- androidx.constraintlayout:constraintlayout:2.0.0-beta2 (*)
|    +--- com.google.android.material:material:1.0.0-rc01 -> 1.0.0 (*)
|    +--- androidx.appcompat:appcompat:1.1.0 (*)
|    +--- androidx.core:core-ktx:+ -> 1.3.0-rc01 (*)
|    +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.3.71 (*)
|    +--- project :internetservice (*)
|    \--- project :ludes_sugarORM (*)
+--- com.asksira.android:bsimagepicker:1.2.2
+--- project :internetservice (*)
+--- com.google.gms:google-services:4.3.3
|    +--- com.google.android.gms:strict-version-matcher-plugin:1.2.1
|    |    +--- com.google.code.findbugs:jsr305:3.0.2
|    |    +--- com.google.guava:guava:27.0.1-jre
|    |    |    +--- com.google.guava:failureaccess:1.0.1
|    |    |    +--- com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava
|    |    |    +--- com.google.code.findbugs:jsr305:3.0.2
|    |    |    +--- org.checkerframework:checker-qual:2.5.2
|    |    |    +--- com.google.errorprone:error_prone_annotations:2.2.0
|    |    |    +--- com.google.j2objc:j2objc-annotations:1.1
|    |    |    \--- org.codehaus.mojo:animal-sniffer-annotations:1.17
|    |    \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.11
|    |         +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.11 -> 1.4-M1 (*)
|    |         \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.3.11 -> 1.3.71 (*)
|    +--- com.google.code.gson:gson:2.8.5
|    \--- com.google.guava:guava:27.0.1-jre (*)
+--- com.crashlytics.sdk.android:crashlytics:2.10.1
|    +--- com.crashlytics.sdk.android:crashlytics-core:2.7.0
|    |    +--- io.fabric.sdk.android:fabric:1.4.8
|    |    \--- com.crashlytics.sdk.android:answers:1.4.7
|    |         \--- io.fabric.sdk.android:fabric:1.4.8
|    +--- com.crashlytics.sdk.android:beta:1.2.10
|    |    \--- io.fabric.sdk.android:fabric:1.4.4 -> 1.4.8
|    +--- io.fabric.sdk.android:fabric:1.4.8
|    \--- com.crashlytics.sdk.android:answers:1.4.7 (*)
+--- project :sync_transaction (*)
\--- junit:junit:4.12
     \--- org.hamcrest:hamcrest-core:1.3

cs10ReleaseUnitTestRuntimeOnly - Runtime only dependencies for compilation 'cs10ReleaseUnitTest' (target  (androidJvm)). (n)
No dependencies

cs10ReleaseUnitTestRuntimeOnlyDependenciesMetadata
No dependencies

cs10ReleaseWearApp - Link to a wear app to embed for object 'cs10Release'. (n)
No dependencies

cs10ReleaseWearBundling - Resolved Configuration for wear app bundling for variant: cs10Release
No dependencies

cs10RuntimeOnly - Runtime only dependencies for 'cs10' sources. (n)
No dependencies

cs10RuntimeOnlyDependenciesMetadata
No dependencies

cs10WearApp - Link to a wear app to embed for object 'cs10'. (n)
No dependencies

debugAnnotationProcessor - Classpath for the annotation processor for 'debug'. (n)
No dependencies

debugApi - API dependencies for 'debug' sources. (n)
No dependencies

debugApiDependenciesMetadata
No dependencies

debugApk - Apk dependencies for 'debug' sources (deprecated: use 'debugRuntimeOnly' instead). (n)
No dependencies

debugCompile - Compile dependencies for 'debug' sources (deprecated: use 'debugImplementation' instead). (n)
No dependencies

debugCompileOnly - Compile only dependencies for 'debug' sources. (n)
No dependencies

debugCompileOnlyDependenciesMetadata
No dependencies

debugImplementation - Implementation only dependencies for 'debug' sources. (n)
No dependencies

debugImplementationDependenciesMetadata
No dependencies

debugProvided - Provided dependencies for 'debug' sources (deprecated: use 'debugCompileOnly' instead). (n)
No dependencies

debugRuntimeOnly - Runtime only dependencies for 'debug' sources. (n)
No dependencies

debugRuntimeOnlyDependenciesMetadata
No dependencies

debugWearApp - Link to a wear app to embed for object 'debug'. (n)
No dependencies

default - Configuration for default artifacts. (n)
No dependencies

implementation - Implementation only dependencies for 'main' sources. (n)
+--- org.jetbrains.kotlin:kotlin-android-extensions-runtime:1.3.71 (n)
+--- unspecified (n)
+--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.3.71 (n)
+--- androidx.appcompat:appcompat:1.1.0-rc01 (n)
+--- androidx.constraintlayout:constraintlayout:2.0.0-beta2 (n)
+--- com.google.android.material:material:1.0.0-rc01 (n)
+--- com.jakewharton.retrofit:retrofit2-kotlin-coroutines-adapter:0.9.2 (n)
+--- androidx.lifecycle:lifecycle-extensions:2.2.0-alpha02 (n)
+--- androidx.appcompat:appcompat:1.0.2 (n)
+--- androidx.constraintlayout:constraintlayout:1.1.3 (n)
+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.+ (n)
+--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.+ (n)
+--- androidx.multidex:multidex:2.0.1 (n)
+--- com.facebook.stetho:stetho:1.5.0 (n)
+--- com.facebook.stetho:stetho-okhttp3:1.5.0 (n)
+--- com.google.android.play:core:1.6.1 (n)
+--- project ludes_kasir (n)
+--- project ludes_ui (n)
+--- project ludes_core (n)
+--- project ludes_products (n)
+--- project ludes_api (n)
+--- project ludes_sugarORM (n)
+--- project ludes_account (n)
+--- project bluetoothprinter (n)
+--- com.asksira.android:bsimagepicker:1.2.2 (n)
+--- project internetservice (n)
+--- com.google.gms:google-services:4.3.3 (n)
+--- com.crashlytics.sdk.android:crashlytics:2.10.1 (n)
\--- project sync_transaction (n)

implementationDependenciesMetadata
+--- org.jetbrains.kotlin:kotlin-android-extensions-runtime:1.3.71
|    \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.71 -> 1.4-M1
|         +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.4-M1
|         \--- org.jetbrains:annotations:13.0
+--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.3.71
|    \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.71 -> 1.4-M1 (*)
+--- androidx.appcompat:appcompat:1.1.0-rc01
|    +--- androidx.annotation:annotation:1.1.0
|    +--- androidx.core:core:1.1.0-rc01
|    |    +--- androidx.annotation:annotation:1.1.0-rc01 -> 1.1.0
|    |    +--- androidx.lifecycle:lifecycle-runtime:2.0.0 -> 2.2.0-alpha02
|    |    |    +--- androidx.lifecycle:lifecycle-common:2.2.0-alpha02
|    |    |    |    \--- androidx.annotation:annotation:1.1.0
|    |    |    +--- androidx.arch.core:core-common:2.1.0-rc01
|    |    |    |    \--- androidx.annotation:annotation:1.1.0
|    |    |    \--- androidx.annotation:annotation:1.1.0
|    |    +--- androidx.versionedparcelable:versionedparcelable:1.1.0-rc01
|    |    |    +--- androidx.annotation:annotation:1.1.0-rc01 -> 1.1.0
|    |    |    \--- androidx.collection:collection:1.0.0 -> 1.1.0
|    |    |         \--- androidx.annotation:annotation:1.1.0
|    |    \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
|    +--- androidx.cursoradapter:cursoradapter:1.0.0
|    |    \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
|    +--- androidx.fragment:fragment:1.1.0-rc01 -> 1.2.0-alpha01
|    |    +--- androidx.annotation:annotation:1.1.0
|    |    +--- androidx.core:core:1.1.0-rc01 (*)
|    |    +--- androidx.collection:collection:1.1.0 (*)
|    |    +--- androidx.viewpager:viewpager:1.0.0
|    |    |    +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
|    |    |    +--- androidx.core:core:1.0.0 -> 1.1.0-rc01 (*)
|    |    |    \--- androidx.customview:customview:1.0.0
|    |    |         +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
|    |    |         \--- androidx.core:core:1.0.0 -> 1.1.0-rc01 (*)
|    |    +--- androidx.loader:loader:1.0.0
|    |    |    +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
|    |    |    +--- androidx.core:core:1.0.0 -> 1.1.0-rc01 (*)
|    |    |    +--- androidx.lifecycle:lifecycle-livedata:2.0.0 -> 2.2.0-alpha02
|    |    |    |    +--- androidx.arch.core:core-runtime:2.1.0-rc01
|    |    |    |    |    +--- androidx.annotation:annotation:1.1.0
|    |    |    |    |    \--- androidx.arch.core:core-common:2.1.0-rc01 (*)
|    |    |    |    +--- androidx.lifecycle:lifecycle-livedata-core:2.2.0-alpha02
|    |    |    |    |    +--- androidx.lifecycle:lifecycle-common:2.2.0-alpha02 (*)
|    |    |    |    |    +--- androidx.arch.core:core-common:2.1.0-rc01 (*)
|    |    |    |    |    \--- androidx.arch.core:core-runtime:2.1.0-rc01 (*)
|    |    |    |    \--- androidx.arch.core:core-common:2.1.0-rc01 (*)
|    |    |    \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0 -> 2.2.0-alpha02
|    |    |         \--- androidx.annotation:annotation:1.1.0
|    |    +--- androidx.activity:activity:1.1.0-alpha01
|    |    |    +--- androidx.annotation:annotation:1.1.0
|    |    |    +--- androidx.core:core:1.1.0-rc01 (*)
|    |    |    +--- androidx.lifecycle:lifecycle-runtime:2.2.0-alpha02 (*)
|    |    |    +--- androidx.lifecycle:lifecycle-viewmodel:2.2.0-alpha02 (*)
|    |    |    \--- androidx.savedstate:savedstate:1.0.0-rc01
|    |    |         +--- androidx.annotation:annotation:1.1.0
|    |    |         +--- androidx.arch.core:core-common:2.0.1 -> 2.1.0-rc01 (*)
|    |    |         \--- androidx.lifecycle:lifecycle-common:2.0.0 -> 2.2.0-alpha02 (*)
|    |    \--- androidx.lifecycle:lifecycle-viewmodel:2.2.0-alpha02 (*)
|    +--- androidx.appcompat:appcompat-resources:1.1.0-rc01
|    |    +--- androidx.annotation:annotation:1.1.0
|    |    +--- androidx.core:core:1.0.1 -> 1.1.0-rc01 (*)
|    |    +--- androidx.vectordrawable:vectordrawable:1.1.0-rc01
|    |    |    +--- androidx.annotation:annotation:1.1.0
|    |    |    +--- androidx.core:core:1.1.0-rc01 (*)
|    |    |    \--- androidx.collection:collection:1.1.0 (*)
|    |    +--- androidx.vectordrawable:vectordrawable-animated:1.1.0-rc01
|    |    |    +--- androidx.vectordrawable:vectordrawable:1.1.0-rc01 (*)
|    |    |    +--- androidx.interpolator:interpolator:1.0.0
|    |    |    |    \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
|    |    |    \--- androidx.collection:collection:1.1.0 (*)
|    |    \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
|    +--- androidx.drawerlayout:drawerlayout:1.0.0
|    |    +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
|    |    +--- androidx.core:core:1.0.0 -> 1.1.0-rc01 (*)
|    |    \--- androidx.customview:customview:1.0.0 (*)
|    \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+--- androidx.constraintlayout:constraintlayout:2.0.0-beta2
|    +--- androidx.appcompat:appcompat:1.0.2 -> 1.1.0-rc01 (*)
|    +--- androidx.core:core:1.1.0-rc01 (*)
|    \--- androidx.constraintlayout:constraintlayout-solver:2.0.0-beta2
+--- com.google.android.material:material:1.0.0-rc01
|    +--- androidx.annotation:annotation:1.0.0-rc01 -> 1.1.0
|    +--- androidx.core:core:1.0.0-rc01 -> 1.1.0-rc01 (*)
|    +--- androidx.legacy:legacy-support-core-ui:1.0.0-rc01
|    |    +--- androidx.annotation:annotation:1.0.0-rc01 -> 1.1.0
|    |    +--- androidx.core:core:1.0.0-rc01 -> 1.1.0-rc01 (*)
|    |    +--- androidx.legacy:legacy-support-core-utils:1.0.0-rc01
|    |    |    +--- androidx.annotation:annotation:1.0.0-rc01 -> 1.1.0
|    |    |    +--- androidx.core:core:1.0.0-rc01 -> 1.1.0-rc01 (*)
|    |    |    +--- androidx.documentfile:documentfile:1.0.0-rc01
|    |    |    |    \--- androidx.annotation:annotation:1.0.0-rc01 -> 1.1.0
|    |    |    +--- androidx.loader:loader:1.0.0-rc01 -> 1.0.0 (*)
|    |    |    +--- androidx.localbroadcastmanager:localbroadcastmanager:1.0.0-rc01
|    |    |    |    \--- androidx.annotation:annotation:1.0.0-rc01 -> 1.1.0
|    |    |    \--- androidx.print:print:1.0.0-rc01
|    |    |         \--- androidx.annotation:annotation:1.0.0-rc01 -> 1.1.0
|    |    +--- androidx.customview:customview:1.0.0-rc01 -> 1.0.0 (*)
|    |    +--- androidx.viewpager:viewpager:1.0.0-rc01 -> 1.0.0 (*)
|    |    +--- androidx.coordinatorlayout:coordinatorlayout:1.0.0-rc01
|    |    |    +--- androidx.annotation:annotation:1.0.0-rc01 -> 1.1.0
|    |    |    +--- androidx.core:core:1.0.0-rc01 -> 1.1.0-rc01 (*)
|    |    |    \--- androidx.customview:customview:1.0.0-rc01 -> 1.0.0 (*)
|    |    +--- androidx.drawerlayout:drawerlayout:1.0.0-rc01 -> 1.0.0 (*)
|    |    +--- androidx.slidingpanelayout:slidingpanelayout:1.0.0-rc01
|    |    |    +--- androidx.annotation:annotation:1.0.0-rc01 -> 1.1.0
|    |    |    +--- androidx.core:core:1.0.0-rc01 -> 1.1.0-rc01 (*)
|    |    |    \--- androidx.customview:customview:1.0.0-rc01 -> 1.0.0 (*)
|    |    +--- androidx.interpolator:interpolator:1.0.0-rc01 -> 1.0.0 (*)
|    |    +--- androidx.swiperefreshlayout:swiperefreshlayout:1.0.0-rc01
|    |    |    +--- androidx.annotation:annotation:1.0.0-rc01 -> 1.1.0
|    |    |    +--- androidx.core:core:1.0.0-rc01 -> 1.1.0-rc01 (*)
|    |    |    \--- androidx.interpolator:interpolator:1.0.0-rc01 -> 1.0.0 (*)
|    |    +--- androidx.asynclayoutinflater:asynclayoutinflater:1.0.0-rc01
|    |    |    +--- androidx.annotation:annotation:1.0.0-rc01 -> 1.1.0
|    |    |    \--- androidx.core:core:1.0.0-rc01 -> 1.1.0-rc01 (*)
|    |    \--- androidx.cursoradapter:cursoradapter:1.0.0-rc01 -> 1.0.0 (*)
|    +--- androidx.legacy:legacy-support-core-utils:1.0.0-rc01 (*)
|    +--- androidx.fragment:fragment:1.0.0-rc01 -> 1.2.0-alpha01 (*)
|    +--- androidx.transition:transition:1.0.0-rc01
|    |    +--- androidx.annotation:annotation:1.0.0-rc01 -> 1.1.0
|    |    \--- androidx.core:core:1.0.0-rc01 -> 1.1.0-rc01 (*)
|    +--- androidx.appcompat:appcompat:1.0.0-rc01 -> 1.1.0-rc01 (*)
|    +--- androidx.cardview:cardview:1.0.0-rc01
|    |    \--- androidx.annotation:annotation:1.0.0-rc01 -> 1.1.0
|    \--- androidx.recyclerview:recyclerview:1.0.0-rc01
|         +--- androidx.annotation:annotation:1.0.0-rc01 -> 1.1.0
|         +--- androidx.core:core:1.0.0-rc01 -> 1.1.0-rc01 (*)
|         \--- androidx.legacy:legacy-support-core-ui:1.0.0-rc01 (*)
+--- com.jakewharton.retrofit:retrofit2-kotlin-coroutines-adapter:0.9.2
|    +--- com.squareup.retrofit2:retrofit:2.4.0
|    |    \--- com.squareup.okhttp3:okhttp:3.10.0
|    |         \--- com.squareup.okio:okio:1.14.0
|    +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.0-rc-57 -> 1.4-M1 (*)
|    \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:0.26.1-eap13 -> 1.3.5-2-native-mt-1.4-M1
|         +--- org.jetbrains.kotlin:kotlin-stdlib:1.4-M1 (*)
|         \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.4-M1
+--- androidx.lifecycle:lifecycle-extensions:2.2.0-alpha02
|    +--- androidx.lifecycle:lifecycle-runtime:2.2.0-alpha02 (*)
|    +--- androidx.arch.core:core-common:2.1.0-rc01 (*)
|    +--- androidx.arch.core:core-runtime:2.1.0-rc01 (*)
|    +--- androidx.fragment:fragment:1.2.0-alpha01 (*)
|    +--- androidx.lifecycle:lifecycle-common:2.2.0-alpha02 (*)
|    +--- androidx.lifecycle:lifecycle-livedata:2.2.0-alpha02 (*)
|    +--- androidx.lifecycle:lifecycle-process:2.2.0-alpha02
|    |    \--- androidx.lifecycle:lifecycle-runtime:2.2.0-alpha02 (*)
|    +--- androidx.lifecycle:lifecycle-service:2.2.0-alpha02
|    |    \--- androidx.lifecycle:lifecycle-runtime:2.2.0-alpha02 (*)
|    \--- androidx.lifecycle:lifecycle-viewmodel:2.2.0-alpha02 (*)
+--- androidx.appcompat:appcompat:1.0.2 -> 1.1.0-rc01 (*)
+--- androidx.constraintlayout:constraintlayout:1.1.3 -> 2.0.0-beta2 (*)
+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.+ -> 1.3.5-2-native-mt-1.4-M1 (*)
+--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.+ -> 1.3.5-2-native-mt-1.4-M1
|    +--- org.jetbrains.kotlin:kotlin-stdlib:1.4-M1 (*)
|    \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.5-2-native-mt-1.4-M1 (*)
+--- androidx.multidex:multidex:2.0.1
+--- com.facebook.stetho:stetho:1.5.0
|    +--- commons-cli:commons-cli:1.2
|    \--- com.google.code.findbugs:jsr305:2.0.1
+--- com.facebook.stetho:stetho-okhttp3:1.5.0
|    +--- com.facebook.stetho:stetho:1.5.0 (*)
|    +--- com.google.code.findbugs:jsr305:2.0.1
|    \--- com.squareup.okhttp3:okhttp:3.4.2 -> 3.10.0 (*)
+--- com.google.android.play:core:1.6.1
+--- project :ludes_kasir FAILED
+--- project :ludes_ui FAILED
+--- project :ludes_core FAILED
+--- project :ludes_products FAILED
+--- project :ludes_api FAILED
+--- project :ludes_sugarORM FAILED
+--- project :ludes_account FAILED
+--- project :bluetoothprinter FAILED
+--- com.asksira.android:bsimagepicker:1.2.2
+--- project :internetservice FAILED
+--- com.google.gms:google-services:4.3.3
+--- com.crashlytics.sdk.android:crashlytics:2.10.1
|    +--- com.crashlytics.sdk.android:crashlytics-core:2.7.0
|    |    +--- io.fabric.sdk.android:fabric:1.4.8
|    |    \--- com.crashlytics.sdk.android:answers:1.4.7
|    |         \--- io.fabric.sdk.android:fabric:1.4.8
|    +--- com.crashlytics.sdk.android:beta:1.2.10
|    |    \--- io.fabric.sdk.android:fabric:1.4.4 -> 1.4.8
|    +--- io.fabric.sdk.android:fabric:1.4.8
|    \--- com.crashlytics.sdk.android:answers:1.4.7 (*)
\--- project :sync_transaction FAILED

io.fabric - fabric and its transitive dependencies.
No dependencies

kotlinCompilerClasspath
\--- org.jetbrains.kotlin:kotlin-compiler-embeddable:1.3.71
     +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.71
     |    +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.3.71
     |    \--- org.jetbrains:annotations:13.0
     +--- org.jetbrains.kotlin:kotlin-script-runtime:1.3.71
     +--- org.jetbrains.kotlin:kotlin-reflect:1.3.71
     |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.71 (*)
     +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:1.3.71
     \--- org.jetbrains.intellij.deps:trove4j:1.0.20181211

kotlinCompilerPluginClasspath
\--- org.jetbrains.kotlin:kotlin-android-extensions:1.3.71
     \--- org.jetbrains.kotlin:kotlin-compiler-embeddable:1.3.71
          +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.71
          |    +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.3.71
          |    \--- org.jetbrains:annotations:13.0
          +--- org.jetbrains.kotlin:kotlin-script-runtime:1.3.71
          +--- org.jetbrains.kotlin:kotlin-reflect:1.3.71
          |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.71 (*)
          +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:1.3.71
          \--- org.jetbrains.intellij.deps:trove4j:1.0.20181211

kotlinNativeCompilerPluginClasspath
No dependencies

lintChecks - Configuration to apply external lint check jar
No dependencies

lintClassPath - The lint embedded classpath
\--- com.android.tools.lint:lint-gradle:26.4.1
     +--- com.android.tools:sdk-common:26.4.1
     |    +--- com.android.tools:sdklib:26.4.1
     |    |    +--- com.android.tools.layoutlib:layoutlib-api:26.4.1
     |    |    |    +--- com.android.tools:common:26.4.1
     |    |    |    |    +--- com.android.tools:annotations:26.4.1
     |    |    |    |    +--- com.google.guava:guava:26.0-jre
     |    |    |    |    |    +--- com.google.code.findbugs:jsr305:3.0.2
     |    |    |    |    |    +--- org.checkerframework:checker-qual:2.5.2
     |    |    |    |    |    +--- com.google.errorprone:error_prone_annotations:2.1.3
     |    |    |    |    |    +--- com.google.j2objc:j2objc-annotations:1.1
     |    |    |    |    |    \--- org.codehaus.mojo:animal-sniffer-annotations:1.14
     |    |    |    |    \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.31
     |    |    |    |         +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.31
     |    |    |    |         |    +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.3.31
     |    |    |    |         |    \--- org.jetbrains:annotations:13.0
     |    |    |    |         \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.3.31
     |    |    |    |              \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.31 (*)
     |    |    |    +--- net.sf.kxml:kxml2:2.3.0
     |    |    |    +--- com.android.tools:annotations:26.4.1
     |    |    |    \--- org.jetbrains:annotations:13.0
     |    |    +--- com.android.tools:dvlib:26.4.1
     |    |    |    \--- com.android.tools:common:26.4.1 (*)
     |    |    +--- com.android.tools:repository:26.4.1
     |    |    |    +--- com.android.tools:common:26.4.1 (*)
     |    |    |    +--- com.sun.activation:javax.activation:1.2.0
     |    |    |    +--- org.apache.commons:commons-compress:1.12
     |    |    |    +--- org.glassfish.jaxb:jaxb-runtime:2.2.11
     |    |    |    |    +--- org.glassfish.jaxb:jaxb-core:2.2.11
     |    |    |    |    |    +--- javax.xml.bind:jaxb-api:2.2.12-b140109.1041
     |    |    |    |    |    +--- org.glassfish.jaxb:txw2:2.2.11
     |    |    |    |    |    \--- com.sun.istack:istack-commons-runtime:2.21
     |    |    |    |    +--- org.jvnet.staxex:stax-ex:1.7.7
     |    |    |    |    \--- com.sun.xml.fastinfoset:FastInfoset:1.2.13
     |    |    |    +--- com.google.jimfs:jimfs:1.1
     |    |    |    |    \--- com.google.guava:guava:18.0 -> 26.0-jre (*)
     |    |    |    \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.31 (*)
     |    |    +--- com.google.code.gson:gson:2.8.0
     |    |    +--- org.apache.commons:commons-compress:1.12
     |    |    +--- org.apache.httpcomponents:httpmime:4.5.6
     |    |    |    \--- org.apache.httpcomponents:httpclient:4.5.6
     |    |    |         +--- org.apache.httpcomponents:httpcore:4.4.10
     |    |    |         +--- commons-logging:commons-logging:1.2
     |    |    |         \--- commons-codec:commons-codec:1.10
     |    |    \--- org.apache.httpcomponents:httpcore:4.4.10
     |    +--- com.android.tools.build:builder-test-api:3.4.1
     |    |    \--- com.android.tools.ddms:ddmlib:26.4.1
     |    |         +--- com.android.tools:common:26.4.1 (*)
     |    |         \--- net.sf.kxml:kxml2:2.3.0
     |    +--- com.android.tools.build:builder-model:3.4.1
     |    |    \--- com.android.tools:annotations:26.4.1
     |    +--- com.android.tools.ddms:ddmlib:26.4.1 (*)
     |    +--- org.bouncycastle:bcpkix-jdk15on:1.56
     |    |    \--- org.bouncycastle:bcprov-jdk15on:1.56
     |    +--- org.bouncycastle:bcprov-jdk15on:1.56
     |    +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.31 (*)
     |    +--- org.jetbrains.kotlin:kotlin-reflect:1.3.31
     |    |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.31 (*)
     |    +--- com.google.protobuf:protobuf-java:3.4.0
     |    \--- javax.inject:javax.inject:1
     +--- com.android.tools.build:builder:3.4.1
     |    +--- com.android.tools.build:builder-model:3.4.1 (*)
     |    +--- com.android.tools.build:builder-test-api:3.4.1 (*)
     |    +--- com.android.tools:sdklib:26.4.1 (*)
     |    +--- com.android.tools:sdk-common:26.4.1 (*)
     |    +--- com.android.tools:common:26.4.1 (*)
     |    +--- com.android.tools.build:manifest-merger:26.4.1
     |    |    +--- com.android.tools:common:26.4.1 (*)
     |    |    +--- com.android.tools:sdklib:26.4.1 (*)
     |    |    +--- com.android.tools:sdk-common:26.4.1 (*)
     |    |    +--- com.google.code.gson:gson:2.8.0
     |    |    +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.31 (*)
     |    |    \--- net.sf.kxml:kxml2:2.3.0
     |    +--- com.android.tools.ddms:ddmlib:26.4.1 (*)
     |    +--- com.android.tools.analytics-library:protos:26.4.1
     |    |    \--- com.google.protobuf:protobuf-java:3.4.0
     |    +--- com.android.tools.analytics-library:shared:26.4.1
     |    |    +--- com.android.tools.analytics-library:protos:26.4.1 (*)
     |    |    +--- com.android.tools:annotations:26.4.1
     |    |    +--- com.android.tools:common:26.4.1 (*)
     |    |    +--- com.google.guava:guava:26.0-jre (*)
     |    |    +--- com.google.code.gson:gson:2.8.0
     |    |    \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.31 (*)
     |    +--- com.android.tools.analytics-library:tracker:26.4.1
     |    |    +--- com.android.tools:annotations:26.4.1
     |    |    +--- com.android.tools:common:26.4.1 (*)
     |    |    +--- com.android.tools.analytics-library:protos:26.4.1 (*)
     |    |    +--- com.android.tools.analytics-library:shared:26.4.1 (*)
     |    |    +--- com.google.protobuf:protobuf-java:3.4.0
     |    |    +--- com.google.guava:guava:26.0-jre (*)
     |    |    \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.31 (*)
     |    +--- com.android.tools.build:apksig:3.4.1
     |    +--- com.android.tools.build:apkzlib:3.4.1
     |    |    +--- com.google.code.findbugs:jsr305:1.3.9 -> 3.0.2
     |    |    +--- com.google.guava:guava:23.0 -> 26.0-jre (*)
     |    |    +--- org.bouncycastle:bcpkix-jdk15on:1.56 (*)
     |    |    +--- org.bouncycastle:bcprov-jdk15on:1.56
     |    |    \--- com.android.tools.build:apksig:3.4.1
     |    +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.31 (*)
     |    +--- com.squareup:javawriter:2.5.0
     |    +--- org.bouncycastle:bcpkix-jdk15on:1.56 (*)
     |    +--- org.bouncycastle:bcprov-jdk15on:1.56
     |    +--- org.ow2.asm:asm:6.0
     |    +--- org.ow2.asm:asm-tree:6.0
     |    |    \--- org.ow2.asm:asm:6.0
     |    +--- javax.inject:javax.inject:1
     |    +--- org.ow2.asm:asm-commons:6.0
     |    |    \--- org.ow2.asm:asm-tree:6.0 (*)
     |    +--- org.ow2.asm:asm-util:6.0
     |    |    \--- org.ow2.asm:asm-tree:6.0 (*)
     |    +--- it.unimi.dsi:fastutil:7.2.0
     |    +--- net.sf.jopt-simple:jopt-simple:4.9
     |    \--- com.googlecode.json-simple:json-simple:1.1
     +--- com.android.tools.build:builder-model:3.4.1 (*)
     +--- com.android.tools.external.com-intellij:intellij-core:26.4.1
     |    \--- org.jetbrains.trove4j:trove4j:20160824
     +--- com.android.tools.external.com-intellij:kotlin-compiler:26.4.1
     +--- com.android.tools.external.org-jetbrains:uast:26.4.1
     +--- com.android.tools.build:manifest-merger:26.4.1 (*)
     +--- com.android.tools.lint:lint:26.4.1
     |    +--- com.android.tools.lint:lint-checks:26.4.1
     |    |    +--- com.android.tools.lint:lint-api:26.4.1
     |    |    |    +--- com.android.tools:sdk-common:26.4.1 (*)
     |    |    |    +--- com.android.tools.build:builder-model:3.4.1 (*)
     |    |    |    +--- com.google.guava:guava:26.0-jre (*)
     |    |    |    +--- com.android.tools.external.com-intellij:intellij-core:26.4.1 (*)
     |    |    |    +--- com.android.tools.external.com-intellij:kotlin-compiler:26.4.1
     |    |    |    +--- com.android.tools.external.org-jetbrains:uast:26.4.1
     |    |    |    +--- com.android.tools.build:manifest-merger:26.4.1 (*)
     |    |    |    +--- org.ow2.asm:asm:6.0
     |    |    |    +--- org.ow2.asm:asm-tree:6.0 (*)
     |    |    |    +--- org.jetbrains.kotlin:kotlin-reflect:1.3.31 (*)
     |    |    |    \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.31 (*)
     |    |    +--- com.google.guava:guava:26.0-jre (*)
     |    |    +--- com.android.tools.external.com-intellij:intellij-core:26.4.1 (*)
     |    |    +--- com.android.tools.external.com-intellij:kotlin-compiler:26.4.1
     |    |    +--- com.android.tools.external.org-jetbrains:uast:26.4.1
     |    |    \--- org.ow2.asm:asm-analysis:6.0
     |    |         \--- org.ow2.asm:asm-tree:6.0 (*)
     |    +--- com.google.guava:guava:26.0-jre (*)
     |    +--- com.android.tools.external.org-jetbrains:uast:26.4.1
     |    +--- com.android.tools.external.com-intellij:kotlin-compiler:26.4.1
     |    +--- com.android.tools.build:manifest-merger:26.4.1 (*)
     |    +--- com.android.tools.analytics-library:shared:26.4.1 (*)
     |    +--- com.android.tools.analytics-library:protos:26.4.1 (*)
     |    +--- com.android.tools.analytics-library:tracker:26.4.1 (*)
     |    +--- org.jetbrains.kotlin:kotlin-reflect:1.3.31 (*)
     |    \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.31 (*)
     +--- com.android.tools.lint:lint-gradle-api:26.4.1
     |    +--- com.android.tools:sdklib:26.4.1 (*)
     |    +--- com.android.tools.build:builder-model:3.4.1 (*)
     |    +--- com.android.tools.build:gradle-api:3.4.1
     |    |    +--- com.android.tools.build:builder-model:3.4.1 (*)
     |    |    +--- com.android.tools.build:builder-test-api:3.4.1 (*)
     |    |    +--- com.google.guava:guava:26.0-jre (*)
     |    |    \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.31 (*)
     |    +--- org.jetbrains.kotlin:kotlin-reflect:1.3.31 (*)
     |    +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.31 (*)
     |    \--- com.google.guava:guava:26.0-jre (*)
     +--- org.codehaus.groovy:groovy-all:2.4.15
     +--- org.jetbrains.kotlin:kotlin-reflect:1.3.31 (*)
     \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.31 (*)

lintPublish - Configuration to publish external lint check jar
No dependencies

provided - Provided dependencies for 'main' sources (deprecated: use 'compileOnly' instead). (n)
No dependencies

releaseAnnotationProcessor - Classpath for the annotation processor for 'release'. (n)
No dependencies

releaseApi - API dependencies for 'release' sources. (n)
No dependencies

releaseApiDependenciesMetadata
No dependencies

releaseApk - Apk dependencies for 'release' sources (deprecated: use 'releaseRuntimeOnly' instead). (n)
No dependencies

releaseCompile - Compile dependencies for 'release' sources (deprecated: use 'releaseImplementation' instead). (n)
No dependencies

releaseCompileOnly - Compile only dependencies for 'release' sources. (n)
No dependencies

releaseCompileOnlyDependenciesMetadata
No dependencies

releaseImplementation - Implementation only dependencies for 'release' sources. (n)
No dependencies

releaseImplementationDependenciesMetadata
No dependencies

releaseProvided - Provided dependencies for 'release' sources (deprecated: use 'releaseCompileOnly' instead). (n)
No dependencies

releaseRuntimeOnly - Runtime only dependencies for 'release' sources. (n)
No dependencies

releaseRuntimeOnlyDependenciesMetadata
No dependencies

releaseWearApp - Link to a wear app to embed for object 'release'. (n)
No dependencies

runtimeOnly - Runtime only dependencies for 'main' sources. (n)
No dependencies

runtimeOnlyDependenciesMetadata
No dependencies

testAnnotationProcessor - Classpath for the annotation processor for 'test'. (n)
No dependencies

testApi - API dependencies for 'test' sources. (n)
No dependencies

testApiDependenciesMetadata
No dependencies

testApk - Apk dependencies for 'test' sources (deprecated: use 'testRuntimeOnly' instead). (n)
No dependencies

testBaseAnnotationProcessor - Classpath for the annotation processor for 'testBase'. (n)
No dependencies

testBaseApi - API dependencies for 'testBase' sources. (n)
No dependencies

testBaseApiDependenciesMetadata
No dependencies

testBaseApk - Apk dependencies for 'testBase' sources (deprecated: use 'testBaseRuntimeOnly' instead). (n)
No dependencies

testBaseCompile - Compile dependencies for 'testBase' sources (deprecated: use 'testBaseImplementation' instead). (n)
No dependencies

testBaseCompileOnly - Compile only dependencies for 'testBase' sources. (n)
No dependencies

testBaseCompileOnlyDependenciesMetadata
No dependencies

testBaseDebugAnnotationProcessor - Classpath for the annotation processor for 'testBaseDebug'. (n)
No dependencies

testBaseDebugApi - API dependencies for 'testBaseDebug' sources. (n)
No dependencies

testBaseDebugApiDependenciesMetadata
No dependencies

testBaseDebugApk - Apk dependencies for 'testBaseDebug' sources (deprecated: use 'testBaseDebugRuntimeOnly' instead). (n)
No dependencies

testBaseDebugCompile - Compile dependencies for 'testBaseDebug' sources (deprecated: use 'testBaseDebugImplementation' instead). (n)
No dependencies

testBaseDebugCompileOnly - Compile only dependencies for 'testBaseDebug' sources. (n)
No dependencies

testBaseDebugCompileOnlyDependenciesMetadata
No dependencies

testBaseDebugImplementation - Implementation only dependencies for 'testBaseDebug' sources. (n)
No dependencies

testBaseDebugImplementationDependenciesMetadata
No dependencies

testBaseDebugProvided - Provided dependencies for 'testBaseDebug' sources (deprecated: use 'testBaseDebugCompileOnly' instead). (n)
No dependencies

testBaseDebugRuntimeOnly - Runtime only dependencies for 'testBaseDebug' sources. (n)
No dependencies

testBaseDebugRuntimeOnlyDependenciesMetadata
No dependencies

testBaseDebugWearApp - Link to a wear app to embed for object 'testBaseDebug'. (n)
No dependencies

testBaseImplementation - Implementation only dependencies for 'testBase' sources. (n)
No dependencies

testBaseImplementationDependenciesMetadata
No dependencies

testBaseProvided - Provided dependencies for 'testBase' sources (deprecated: use 'testBaseCompileOnly' instead). (n)
No dependencies

testBaseReleaseAnnotationProcessor - Classpath for the annotation processor for 'testBaseRelease'. (n)
No dependencies

testBaseReleaseApi - API dependencies for 'testBaseRelease' sources. (n)
No dependencies

testBaseReleaseApiDependenciesMetadata
No dependencies

testBaseReleaseApk - Apk dependencies for 'testBaseRelease' sources (deprecated: use 'testBaseReleaseRuntimeOnly' instead). (n)
No dependencies

testBaseReleaseCompile - Compile dependencies for 'testBaseRelease' sources (deprecated: use 'testBaseReleaseImplementation' instead). (n)
No dependencies

testBaseReleaseCompileOnly - Compile only dependencies for 'testBaseRelease' sources. (n)
No dependencies

testBaseReleaseCompileOnlyDependenciesMetadata
No dependencies

testBaseReleaseImplementation - Implementation only dependencies for 'testBaseRelease' sources. (n)
No dependencies

testBaseReleaseImplementationDependenciesMetadata
No dependencies

testBaseReleaseProvided - Provided dependencies for 'testBaseRelease' sources (deprecated: use 'testBaseReleaseCompileOnly' instead). (n)
No dependencies

testBaseReleaseRuntimeOnly - Runtime only dependencies for 'testBaseRelease' sources. (n)
No dependencies

testBaseReleaseRuntimeOnlyDependenciesMetadata
No dependencies

testBaseReleaseWearApp - Link to a wear app to embed for object 'testBaseRelease'. (n)
No dependencies

testBaseRuntimeOnly - Runtime only dependencies for 'testBase' sources. (n)
No dependencies

testBaseRuntimeOnlyDependenciesMetadata
No dependencies

testBaseWearApp - Link to a wear app to embed for object 'testBase'. (n)
No dependencies

testCompile - Compile dependencies for 'test' sources (deprecated: use 'testImplementation' instead).
No dependencies

testCompileOnly - Compile only dependencies for 'test' sources. (n)
No dependencies

testCompileOnlyDependenciesMetadata
No dependencies

testCs10AnnotationProcessor - Classpath for the annotation processor for 'testCs10'. (n)
No dependencies

testCs10Api - API dependencies for 'testCs10' sources. (n)
No dependencies

testCs10ApiDependenciesMetadata
No dependencies

testCs10Apk - Apk dependencies for 'testCs10' sources (deprecated: use 'testCs10RuntimeOnly' instead). (n)
No dependencies

testCs10Compile - Compile dependencies for 'testCs10' sources (deprecated: use 'testCs10Implementation' instead). (n)
No dependencies

testCs10CompileOnly - Compile only dependencies for 'testCs10' sources. (n)
No dependencies

testCs10CompileOnlyDependenciesMetadata
No dependencies

testCs10DebugAnnotationProcessor - Classpath for the annotation processor for 'testCs10Debug'. (n)
No dependencies

testCs10DebugApi - API dependencies for 'testCs10Debug' sources. (n)
No dependencies

testCs10DebugApiDependenciesMetadata
No dependencies

testCs10DebugApk - Apk dependencies for 'testCs10Debug' sources (deprecated: use 'testCs10DebugRuntimeOnly' instead). (n)
No dependencies

testCs10DebugCompile - Compile dependencies for 'testCs10Debug' sources (deprecated: use 'testCs10DebugImplementation' instead). (n)
No dependencies

testCs10DebugCompileOnly - Compile only dependencies for 'testCs10Debug' sources. (n)
No dependencies

testCs10DebugCompileOnlyDependenciesMetadata
No dependencies

testCs10DebugImplementation - Implementation only dependencies for 'testCs10Debug' sources. (n)
No dependencies

testCs10DebugImplementationDependenciesMetadata
No dependencies

testCs10DebugProvided - Provided dependencies for 'testCs10Debug' sources (deprecated: use 'testCs10DebugCompileOnly' instead). (n)
No dependencies

testCs10DebugRuntimeOnly - Runtime only dependencies for 'testCs10Debug' sources. (n)
No dependencies

testCs10DebugRuntimeOnlyDependenciesMetadata
No dependencies

testCs10DebugWearApp - Link to a wear app to embed for object 'testCs10Debug'. (n)
No dependencies

testCs10Implementation - Implementation only dependencies for 'testCs10' sources. (n)
No dependencies

testCs10ImplementationDependenciesMetadata
No dependencies

testCs10Provided - Provided dependencies for 'testCs10' sources (deprecated: use 'testCs10CompileOnly' instead). (n)
No dependencies

testCs10ReleaseAnnotationProcessor - Classpath for the annotation processor for 'testCs10Release'. (n)
No dependencies

testCs10ReleaseApi - API dependencies for 'testCs10Release' sources. (n)
No dependencies

testCs10ReleaseApiDependenciesMetadata
No dependencies

testCs10ReleaseApk - Apk dependencies for 'testCs10Release' sources (deprecated: use 'testCs10ReleaseRuntimeOnly' instead). (n)
No dependencies

testCs10ReleaseCompile - Compile dependencies for 'testCs10Release' sources (deprecated: use 'testCs10ReleaseImplementation' instead). (n)
No dependencies

testCs10ReleaseCompileOnly - Compile only dependencies for 'testCs10Release' sources. (n)
No dependencies

testCs10ReleaseCompileOnlyDependenciesMetadata
No dependencies

testCs10ReleaseImplementation - Implementation only dependencies for 'testCs10Release' sources. (n)
No dependencies

testCs10ReleaseImplementationDependenciesMetadata
No dependencies

testCs10ReleaseProvided - Provided dependencies for 'testCs10Release' sources (deprecated: use 'testCs10ReleaseCompileOnly' instead). (n)
No dependencies

testCs10ReleaseRuntimeOnly - Runtime only dependencies for 'testCs10Release' sources. (n)
No dependencies

testCs10ReleaseRuntimeOnlyDependenciesMetadata
No dependencies

testCs10ReleaseWearApp - Link to a wear app to embed for object 'testCs10Release'. (n)
No dependencies

testCs10RuntimeOnly - Runtime only dependencies for 'testCs10' sources. (n)
No dependencies

testCs10RuntimeOnlyDependenciesMetadata
No dependencies

testCs10WearApp - Link to a wear app to embed for object 'testCs10'. (n)
No dependencies

testDebugAnnotationProcessor - Classpath for the annotation processor for 'testDebug'. (n)
No dependencies

testDebugApi - API dependencies for 'testDebug' sources. (n)
No dependencies

testDebugApiDependenciesMetadata
No dependencies

testDebugApk - Apk dependencies for 'testDebug' sources (deprecated: use 'testDebugRuntimeOnly' instead). (n)
No dependencies

testDebugCompile - Compile dependencies for 'testDebug' sources (deprecated: use 'testDebugImplementation' instead). (n)
No dependencies

testDebugCompileOnly - Compile only dependencies for 'testDebug' sources. (n)
No dependencies

testDebugCompileOnlyDependenciesMetadata
No dependencies

testDebugImplementation - Implementation only dependencies for 'testDebug' sources. (n)
No dependencies

testDebugImplementationDependenciesMetadata
No dependencies

testDebugProvided - Provided dependencies for 'testDebug' sources (deprecated: use 'testDebugCompileOnly' instead). (n)
No dependencies

testDebugRuntimeOnly - Runtime only dependencies for 'testDebug' sources. (n)
No dependencies

testDebugRuntimeOnlyDependenciesMetadata
No dependencies

testDebugWearApp - Link to a wear app to embed for object 'testDebug'. (n)
No dependencies

testImplementation - Implementation only dependencies for 'test' sources. (n)
\--- junit:junit:4.12 (n)

testImplementationDependenciesMetadata
\--- junit:junit:4.12
     \--- org.hamcrest:hamcrest-core:1.3

testProvided - Provided dependencies for 'test' sources (deprecated: use 'testCompileOnly' instead). (n)
No dependencies

testReleaseAnnotationProcessor - Classpath for the annotation processor for 'testRelease'. (n)
No dependencies

testReleaseApi - API dependencies for 'testRelease' sources. (n)
No dependencies

testReleaseApiDependenciesMetadata
No dependencies

testReleaseApk - Apk dependencies for 'testRelease' sources (deprecated: use 'testReleaseRuntimeOnly' instead). (n)
No dependencies

testReleaseCompile - Compile dependencies for 'testRelease' sources (deprecated: use 'testReleaseImplementation' instead). (n)
No dependencies

testReleaseCompileOnly - Compile only dependencies for 'testRelease' sources. (n)
No dependencies

testReleaseCompileOnlyDependenciesMetadata
No dependencies

testReleaseImplementation - Implementation only dependencies for 'testRelease' sources. (n)
No dependencies

testReleaseImplementationDependenciesMetadata
No dependencies

testReleaseProvided - Provided dependencies for 'testRelease' sources (deprecated: use 'testReleaseCompileOnly' instead). (n)
No dependencies

testReleaseRuntimeOnly - Runtime only dependencies for 'testRelease' sources. (n)
No dependencies

testReleaseRuntimeOnlyDependenciesMetadata
No dependencies

testReleaseWearApp - Link to a wear app to embed for object 'testRelease'. (n)
No dependencies

testRuntimeOnly - Runtime only dependencies for 'test' sources. (n)
No dependencies

testRuntimeOnlyDependenciesMetadata
No dependencies

testWearApp - Link to a wear app to embed for object 'test'. (n)
No dependencies

wearApp - Link to a wear app to embed for object 'main'. (n)
No dependencies

(c) - dependency constraint
(*) - dependencies omitted (listed previously)

(n) - Not resolved (configuration is not meant to be resolved)

A web-based, searchable dependency report is available by adding the --scan option.

Deprecated Gradle features were used in this build, making it incompatible with Gradle 7.0.
Use '--warning-mode all' to show the individual deprecation warnings.
See https://docs.gradle.org/6.3/userguide/command_line_interface.html#sec:command_line_warnings

BUILD SUCCESSFUL in 4s
1 actionable task: 1 executed

Here you can see how the 1.4-M1 stdlib dependency ends up being used:

+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.+ -> 1.3.5-2-native-mt-1.4-M1 (*)
+--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.+ -> 1.3.5-2-native-mt-1.4-M1
|    +--- org.jetbrains.kotlin:kotlin-stdlib:1.4-M1 (*)
|    \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.5-2-native-mt-1.4-M1 (*)

To solve the problem, please use explicit versions of kotlinx-coroutines-core and kotlinx-coroutines-android dependencies compatible with 1.3.71 Kotlin version (currently 1.3.6: GitHub - Kotlin/kotlinx.coroutines: Library support for Kotlin coroutines).

1 Like

thank you

Hi all, I get unfortunately a similar issue when cloning this source code:

Plugin [id: ‘org.jetbrains.kotlin.js’, version: ‘1.4-M1’] was not found in any of the following sources

Could someone give me a hint, please?

Thanks in advance,
Dary