I have android:minSdkVersion="11" android:targetSdkVersion="11"
.
In my theme I use reference to @android:color/holo_blue_light
Until now (during many months) it was fully ok. Now I've changed in one place @android:color/holo_blue_light
to @android:color/background_dark
and suddently in all places where I have holo_blue_light
I have an error:
@android:color/holo_blue_light requires API level 14 (current min is 11) Android Lint Problem
Did they change something in sdk itself? Even if I manually return to the previous version of file with holo_blue_light
only I still have the same error. (And for sure the newest definitions of sdk are automatically downloaded by Eclipse from Internet. And it worked during many months with sdk 11 as minimum required).
Any help? Isn't it any sdk problem instead of my app problem?