Skip to content

Files

Latest commit

 

History

History
19 lines (11 loc) · 631 Bytes

react-navigation-crash.md

File metadata and controls

19 lines (11 loc) · 631 Bytes

React Navigation Release Mode Crash

If you are using react-navigation in your project. You have to follow these instruction. In iOS Release mode, react-native application crash between navigating pages. Possible problems:

software-mansion/react-native-gesture-handler#320

To fix problem:

software-mansion/react-native-gesture-handler#320 (comment)

import "react-native-gesture-handler"; // Just add the top of index.js(root of project)

import { AppRegistry } from "react-native";

import App from "./src/App";

import { name as appName } from "./app.json";