I saw this ViewPager, compatibility package and ice cream sandwich and that Does the Android ICS API have a native equivalent to ViewPager support lib? questions which are similar to mine, but not really what I want to ask.
The scenario is similar, I have a ICS only appplication and I'm applying the ViewPager on it (I've already avoided the FragmentPagerAdapter and FragmentStatePagerAdapter to not fall into the fragmentmanager from the compatibility package problem).
The problem is when I export my signed application, I notice on the proguard mapping that it also exported all the fragment stuff from the support library, such as:
android.support.v4.app.ActivityCompatHoneycomb -> android.support.v4.app.a:
android.support.v4.app.BackStackRecord -> android.support.v4.app.b:
android.support.v4.app.BackStackState -> android.support.v4.app.BackStackState:
android.support.v4.app.NoSaveStateFrameLayout -> android.support.v4.app.u:
So, then I'm not sure, will my app be applying the support library objects all around instead of using the nice system wide fragment manager? How can I block it from doing so?
thanks