[Solved] what is the best coding strategy for supporting pre-3.0 devices with android support library and after-3.0 without it? [closed]

The general pattern is that you use the backport so long as your android:minSdkVersion indicates that you need the backport. So, if your android:minSdkVersion is set to 10 or lower, you will: Need to use the Android Support package’s backport of fragments, if you want to use fragments or loaders Need to use ActionBarSherlock or … Read more