user3876059
user3876059

Reputation: 90

No resource found that matches the given name: attr 'android:keyboardNavigationCluster'

After updating the Android Studio, I am getting error like

No resource found that matches the given name: attr 'android:keyboardNavigationCluster'

What should I do?

Upvotes: 0

Views: 664

Answers (1)

Lovekush Vishwakarma
Lovekush Vishwakarma

Reputation: 3179

It is a major issue you just need to do this

In app level build.gradle file use

complieSdkVersion 26  
buildToolVersion "26.0.1"

This will resolve your error.

Upvotes: 1

Related Questions