mirror of
https://github.com/zhigang1992/react-native.git
synced 2026-04-03 09:35:11 +08:00
Summary: Android Support Library page says https://developer.android.com/topic/libraries/support-library/ > Caution: Starting with Support Library release 26.0.0 (July 2017), the minimum supported API level across most support libraries has increased to Android 4.0 (API level 14) for most library packages. For more information, see Version Support and Package Names in this document. _android.support.v4.app.FragmentActivity_ is used to support **Fragment**s on Android API versions below 11. Now, we support only API version 14 and above, it's ok to remove _ReactFragmentActivity_ that extends _FragmentActivity_. Once ReactFragmentActivity removed, we can remove some codes that use _android.support.v4_ to work support _ReactFragmentActivity_ on **unsupported** Android versions. CI is failing for unknown reasons: https://circleci.com/gh/dulmandakh/react-native/278 > Received 'killed' signal Everything will build and work just fine, except showing _ ReactFragmentActivity_ as deprecated Closes https://github.com/facebook/react-native/pull/19741 Differential Revision: D8454968 Pulled By: hramos fbshipit-source-id: e5f901438ef764163af013fe854904a28c73070a
Building React Native for Android
See the docs on the website.
Running tests
When you submit a pull request CircleCI will automatically run all tests. To run tests locally, see Testing.