Android 运行应用程序时获取警告

Android 运行应用程序时获取警告,android,kotlin,build.gradle,Android,Kotlin,Build.gradle,请帮帮我。 我在手机上安装项目时会收到这样的警告 w:类路径中的运行时JAR文件应该具有相同的版本。在类路径中找到了以下文件: 我已经更新了Kotlin。 现在我使用kotlin版本1.3.70 stable 我使用Android Studio 3.5.1版 我使用gradle版本5.4.1 这是我在应用程序级别上的渐变 apply plugin: 'com.android.application' apply plugin: 'kotlin-android' apply plugin: 'k

请帮帮我。
我在手机上安装项目时会收到这样的警告

w:类路径中的运行时JAR文件应该具有相同的版本。在类路径中找到了以下文件:

我已经更新了Kotlin。
现在我使用kotlin版本1.3.70 stable
我使用Android Studio 3.5.1版
我使用gradle版本5.4.1
这是我在应用程序级别上的渐变

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')
}
多谢各位