Created
January 10, 2013 19:01
-
-
Save hvisser/4504794 to your computer and use it in GitHub Desktop.
Android style lint check
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<resources xmlns:android="http://schemas.android.com/apk/res/android"> | |
<style android:name="MyStyle" parent="android:Theme.Light"> | |
<!-- if the minSdk level is less then 11, then this should be a lint error, since android:actionBarStyle is since API 11, | |
unless this is in a -v11 (or better) resource folder --> | |
<item name="android:actionBarStyle">...</item> | |
</style> | |
</resources> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment