I got this error when I created a navigation drawer activity and I don't know how to fix it.
Failed to find style 'coordinatorLayoutStyle' in current theme
I got this error when I created a navigation drawer activity and I don't know how to fix it.
Failed to find style 'coordinatorLayoutStyle' in current theme
You need to insert this line into the theme you are using for the app
<style name="AppTheme.NoActionBar">
<item name="coordinatorLayoutStyle">@style/Widget.Design.CoordinatorLayout</item>
</style>
Android SDK 28 is unfortunately introducing this error on Android Studio
Check your build.gradle (Module: app) file and change:
compileSdkVersion 28
targetSdkVersion 28
To:
compileSdkVersion 27
targetSdkVersion 27