2019-09-26 14:59:27 +00:00
|
|
|
import 'react-native-gesture-handler';
|
2019-04-17 18:57:46 +00:00
|
|
|
import 'react-native-console-time-polyfill';
|
2019-03-12 16:23:06 +00:00
|
|
|
import { AppRegistry } from 'react-native';
|
2021-09-13 20:41:05 +00:00
|
|
|
|
2019-07-18 17:44:02 +00:00
|
|
|
import { name as appName, share as shareName } from './app.json';
|
2019-03-12 16:23:06 +00:00
|
|
|
|
2019-08-13 13:03:46 +00:00
|
|
|
if (__DEV__) {
|
|
|
|
require('./app/ReactotronConfig');
|
2019-10-02 12:27:40 +00:00
|
|
|
} else {
|
|
|
|
console.log = () => {};
|
|
|
|
console.time = () => {};
|
|
|
|
console.timeLog = () => {};
|
|
|
|
console.timeEnd = () => {};
|
|
|
|
console.warn = () => {};
|
|
|
|
console.count = () => {};
|
|
|
|
console.countReset = () => {};
|
|
|
|
console.error = () => {};
|
|
|
|
console.info = () => {};
|
2019-08-13 13:03:46 +00:00
|
|
|
}
|
|
|
|
|
2019-07-18 17:44:02 +00:00
|
|
|
AppRegistry.registerComponent(appName, () => require('./app/index').default);
|
|
|
|
AppRegistry.registerComponent(shareName, () => require('./app/share').default);
|
2019-03-12 16:23:06 +00:00
|
|
|
|
|
|
|
// For storybook, comment everything above and uncomment below
|
|
|
|
// import './storybook';
|