Error inflating class com.google.android.material.navigation.NavigationView after migration to AndroidX

前端 未结 7 905
悲哀的现实
悲哀的现实 2020-12-19 06:11

After I updated my project to AndroidX with targetSdkVersion set to 28, my project crashes on installing it from the store for beta testing.

<
7条回答
  •  有刺的猬
    2020-12-19 06:32

    In my case the problem was the theme value in the Manifest file

    
            android:theme="@style/AppBaseTheme.NoActionBar"
        
    

    Changed in

    
        
    

提交回复
热议问题