android - Error:(2367, 40) No resource found that matches the given name (at 'colorButtonNormal' with value '@color/blue_grey_500') -
i´m using android studio , when generate signed apk show me error:
error:execution failed task ':app:processreleaseresources'.
com.android.ide.common.process.processexception: failed execute aapt
error:(2367, 40) no resource found matches given name (at 'colorbuttonnormal' value '@color/blue_grey_500').
error:(2367, 40) no resource found matches given name (at 'colorbuttonnormal' value '@color/blue_grey_500').
and error in here (in file res/values/styles.xml):
<style name="themeoverlay.mydarkbutton" parent="themeoverlay.appcompat.dark"> <item name="colorbuttonnormal">@color/blue_grey_500</item> <item name="android:textcolor">@android:color/white</item> </style>
how fix this?
just add color manually in colors.xml
<color name="blue_grey_500">#9e9e9e</color>
Comments
Post a Comment