All the AndroidX versions different from the compile

后端 未结 5 873
轮回少年
轮回少年 2021-01-12 14:30

I\'ve migrated my project to AndroidX cause i was having some errors, but now i\'m receiving a loop of errors that the androidX class has a different version from the compil

5条回答
  •  醉话见心
    2021-01-12 14:52

    I've resolved my error migrating my project to androidX in gradle.properties, and by Refactor => Migrate to AndroidX, and adding this code to my app/build.gradle:

    configurations {
        all*.exclude group: 'com.google.guava', module: 'listenablefuture'
    }
    

提交回复
热议问题