All the AndroidX versions different from the compile

后端 未结 5 819
轮回少年
轮回少年 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:39

    I've had similar issue, just solved it using this inside app/build.gradle

    configurations.all {
        resolutionStrategy {
            resolutionStrategy.eachDependency { details ->
                if (details.requested.group == 'androidx.core') {
                    details.useVersion "1.0.1"
                }
                if (details.requested.group == 'androidx.lifecycle') {
                    details.useVersion "2.0.0"
                }
                if (details.requested.group == 'androidx.versionedparcelable') {
                    details.useVersion "1.0.0"
                }
                if (details.requested.group == 'androidx.fragment') {
                    details.useVersion "1.0.0"
                }
                if (details.requested.group == 'androidx.appcompat') {
                    details.useVersion "1.0.1"
                }
            }
        }
    }
    

提交回复
热议问题