I have an application in the market for a year. Last week, I have changed the source code of my app. When I wanted to build the release version Android Studio throws an Error:
"Error: Expected a color resource id (R.color.) but received an RGB integer [ResourceType]"
Color is only used in this part of code and I haven't made any changes in this part:
if (android.os.Build.VERSION.SDK_INT >= 16) {
rlFlash.setBackground(new ColorDrawable
(Color.parseColor(("#86cc55"))));
}
else{
rlFlash.setBackgroundDrawable(new ColorDrawable
(Color.parseColor(("#86cc55"))));
}
It is so strange that in the Debug version Android studio didn't throw any error and I can build the apk.
Do you know whats happen??
Thanks.