I can't get my project to compile after adding the Item name="android:windowTranslucentStatus" to my theme, just adding it to my theme gives me an error telling me I need to target SDK version 19.
That's is perfectly OK however if I move my style to my values-v19 folder I get an error saying that android:windowTranslucentStatus can be found.
I'm not that experienced with android but isn't this the correct way to do it?
values/styles.xml error:
android:windowTranslucentStatus requires API level 19 (current min 14)
values-v19/styles.xml error
Error: No resource found that matches the given name: attr 'android:windowTranslucentStatus'.
The parent for my theme is android:Theme.Holo.Light if that matters.