-
-
Notifications
You must be signed in to change notification settings - Fork 69
/
Copy pathindex.js
35 lines (30 loc) · 1.7 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
BigInt.prototype.toJSON = function () {
return { $bigint: this.toString() };
};
import "react-native-turbo-lnd";
import "react-native-gesture-handler";
import { AppRegistry, LogBox, Platform, UIManager } from "react-native";
import App from "./src/App";
import { name as appName } from "./app.json";
import { enableES5 } from "immer";
import "./src/i18n/i18n";
enableES5();
LogBox.ignoreLogs([
// Workaround until native-base fixes their old
"Warning: component",
// We are putting functions in navigation route props
"Non-serializable values were found in the navigation state",
// Native-base doesn't have useNativeDriver for every animation
"Animated: `useNativeDriver` was not specified",
// Ignore react-native-tor warning
"Module Tor requires main queue setup since it overrides `init` but doesn't implement `requiresMainQueueSetup`. In a future release React Native will default to initializing all native modules on a background thread unless explicitly opted-out of.",
// Ignore intentional require cycle
"Require cycle: node_modules/protobufjs/src/enum.js -> node_modules/protobufjs/src/namespace.js -> node_modules/protobufjs/src/field.js -> node_modules/protobufjs/src/enum.js",
"Require cycle: src/storage/app.ts -> src/migration/app-migration.ts -> src/storage/app.ts",
// Ignore i18next warning about missing Intl API
"i18next::pluralResolver: Your environment seems not to be Intl API compatible, use an Intl.PluralRules polyfill. Will fallback to the compatibilityJSON v3 format handling.",
]);
if (Platform.OS === "android" && UIManager.setLayoutAnimationEnabledExperimental) {
UIManager.setLayoutAnimationEnabledExperimental(true);
}
AppRegistry.registerComponent(appName, () => App);