GIVEN:
Starting with API Level 13 (Android 3.2), the screen sizes (small,normal,large,xlarge) are deprecated in favor of using the swdp qualifier. It is strongly recommended that applications that are meant to run on Android 3.2 or higher should be using these newer qualifiers. http://developer.android.com/guide/practices/screens_support.html
THEN:
What is the best practice for maintaining compatability with api 7+ without making the problem even more complicated by using BOTH techniques at the same time?
To clarify: When creating resource folders for alternate layouts, dimensions,values, etc, with the requirement of supporting api 7+, should we use the deprecated qualifiers (small, normal, large, xlarge) or the new qualifiers (sw600dp, sw800dp etc) or both at the same time?
update: I just found a similar question where the accepted answer suggested using ONLY the older Abstract Size Bin qualifiers: https://stackoverflow.com/a/15113877