You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 10, 2019. It is now read-only.
android.support.v4.app.Fragment (used in a few places) is a backport of new the Fragment APIs added in Android version 11. It's a way to use the fragment APIs on very old Android versions (Gingerbread and below).
Using the fragment APIs from the support library makes it difficult for new apps using android.app.Activity to use material-dialogs and other modules, discussion here: facebook/react-native#5206
React Native itself requires API 16+ (depends on the Choreographer API) so supporting Gingerbread (API 10) and below is not possible with React Native apps in any case.
I don't think there's a reason to the APIs from the support library (android.support.v4.app.Fragment, FragmentActivity etc.) in new apps?