Skip to content Skip to sidebar Skip to footer

Different Theme For Different Android Sdk Versions

Is there a way to use a different theme depending on which SDK version the application is installed on? The reason I ask is because I want to support all the way back to SDK versio

Solution 1:

What you are doing (with your values-v14 folder) is correct. You just need to change your Build Target to allow it to compile. (right click your project, choose properties, select Android, Choose Android 14 or above)

Make sure you do not use any features greater than your android:minSdkVersion as it will cause a Force Close if used on an earlier version of Android.

Post a Comment for "Different Theme For Different Android Sdk Versions"