Error inflating class androidx.constraintlayout.ConstraintLayout after migration to androidx

后端 未结 17 1283
[愿得一人]
[愿得一人] 2020-11-27 14:24

I just made a migration to androidx through Android Studio menu option Refactor -> Refactor to AndroidX

I\'m getting the following

17条回答
  •  庸人自扰
    2020-11-27 15:12

    build.gradle => check dependencies version

    implementation 'androidx.constraintlayout:constraintlayout:1.1.1'
    


    to change

    implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
    

    solved the problem

提交回复
热议问题