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

后端 未结 17 1277
[愿得一人]
[愿得一人] 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:02

    Make Sure you have added the dependency for constraint layout

     dependencies  {
        implementation "androidx.constraintlayout:constraintlayout:1.1.3"
    }
    

    and have made the changes to

提交回复
热议问题