eunchae
eunchae

Reputation: 11

Error:(7, 34) No resource found that matches the given name (at 'colorAccent' with value '@color/accentColor')

Were running the sample file, the above error occurs. I do not know how to solve.

enter image description here

Upvotes: 0

Views: 873

Answers (1)

Sathish Kumar J
Sathish Kumar J

Reputation: 4345

Add follwing resource to your colors.xml

<color name="colorAccent">YOUR_COLOR</color>

This may resolve your issue.

Upvotes: 1

Related Questions