编译时Android X库抛出错误

时间:2018-07-16 12:05:00

标签: android kotlin android-support-library androidx

在android studio 3.1.3中构建项目时出现此错误

  

程序类型已经存在:   android.support.v4.app.INotificationSideChannel $ Stub $ Proxy   消息{种类=错误,文本=程序类型已存在:   android.support.v4.app.INotificationSideChannel $ Stub $ Proxy,   sources = [未知源文件],工具名称= Optional.of(D8)}

我开始在这里的gradle.build迁移到 AndroidX 库:

apply plugin: 'com.android.application'

apply plugin: 'kotlin-android'

apply plugin: 'kotlin-android-extensions'

android {
    compileSdkVersion 28
    defaultConfig {
        applicationId "com.jimmy.bitcoinpriceindex"
        minSdkVersion 19
        targetSdkVersion 28
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }

//    enable databinding
    dataBinding {
        enabled = true
    }

//    add java 8 features support
    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }
}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])

    testImplementation 'junit:junit:4.12'
    androidTestImplementation "androidx.test:runner:$versions.test"
    androidTestImplementation "androidx.test.espresso:espresso-core:$versions.espresso"
    implementation"org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"


    // ViewModel and LiveData
    implementation "androidx.lifecycle:lifecycle-extensions:$versions.lifecycle"

    implementation "androidx.appcompat:appcompat:$versions.support"

    implementation "androidx.constraintlayout:constraintlayout:$versions.constraint_layout"
    implementation "com.github.bumptech.glide:glide:$versions.glide"

    // work manager dependency
    implementation "android.arch.work:work-runtime:$versions.work"

    implementation ("com.squareup.retrofit2:retrofit:$versions.retrofit"){
        // exclude Retrofit’s OkHttp dependency module and define your own module import
        exclude module: 'okhttp'
    }
    implementation "com.squareup.retrofit2:converter-gson:$versions.retrofit"
    implementation "com.google.code.gson:gson:$versions.gson"

    implementation "com.squareup.okhttp3:logging-interceptor:$versions.loggin_interceptor"
    implementation "com.squareup.okhttp3:okhttp:$versions.okttp"

}


apply plugin: 'kotlin-kapt'

1 个答案:

答案 0 :(得分:0)

首先,在迁移之前恢复到原始状态。 有一个内置工具可将您的整个Android项目转换为Androidx。 我正在使用Android Studio 3.3。

重构>将应用迁移到Androidx

这是一份副本,其中转换/迁移后我在gradle中的依赖关系如何:

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'androidx.appcompat:appcompat:1.0.0-beta01'
    implementation 'androidx.legacy:legacy-support-v4:1.0.0-beta01'
    implementation 'androidx.recyclerview:recyclerview:1.0.0-beta01'
    implementation 'com.google.android.material:material:1.0.0-beta01'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'androidx.test:runner:1.1.0-alpha3'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.0-alpha3'

    implementation 'com.squareup.retrofit2:retrofit:2.4.0'
    implementation 'com.squareup.retrofit2:converter-gson:2.4.0'
    implementation 'androidx.constraintlayout:constraintlayout:1.1.2'
    implementation 'com.google.android:flexbox:0.3.0-alpha3'
    implementation 'androidx.lifecycle:lifecycle-extensions:2.0.0-beta01'

}
相关问题