Program type already present: android.support.v4.os.ResultReceiver$MyResultReceiver

后端 未结 6 1767
悲哀的现实
悲哀的现实 2020-12-03 20:39

I\'m refactoring an app to use androidx. I have struggled to get rid of all the libraries that do not support it. I thought I had removed all the libraries that use the sup

6条回答
  •  伪装坚强ぢ
    2020-12-03 21:26

    I got the same issue while adding,

    dataBinding {
        enabled = true
    }
    

    in app.gradle module. My gradle dependency is as:

    implementation 'androidx.appcompat:appcompat:1.0.0-alpha3'
    implementation 'androidx.constraintlayout:constraintlayout:1.1.2'
    implementation 'com.google.android.material:material:1.0.0-alpha3'
    

    When I changed to,

    implementation 'com.android.support:appcompat-v7:28.0.0-alpha3'
    implementation 'com.android.support.constraint:constraint-layout:1.1.2'
    

    I could get rid out of the error while running the project.

提交回复
热议问题