Skip to content Skip to sidebar Skip to footer

Android Studio Resource Linking Failed

I tried to update my app to sdk version 28 and I am constantly getting this error: Android resource linking failed Output: C:\Users\nick\AndroidStudioProjects\BrowserElement\app\b

Solution 1:

error: resource style/Widget.Design.CoordinatorLayout (aka de.test.browserelement:style/Widget.Design.CoordinatorLayout) not found.

Go to your values.xml and change this:

style/Widget.Design.CoordinatorLayout

To:

@style/Widget.Support.CoordinatorLayout

For example:

<itemname="coordinatorLayoutStyle">@style/Widget.Support.CoordinatorLayout</item>

Post a Comment for "Android Studio Resource Linking Failed"