IO-3092 Imgproxy changes, Split client,
This commit is contained in:
23
App.js
23
App.js
@@ -1,19 +1,27 @@
|
||||
import { ApolloProvider } from "@apollo/client";
|
||||
import * as Sentry from "@sentry/react-native";
|
||||
import { SplitFactory } from "@splitsoftware/splitio-react-native";
|
||||
import "expo-asset";
|
||||
import "intl";
|
||||
import "intl/locale-data/jsonp/en";
|
||||
import React from "react";
|
||||
import { MD2LightTheme as DefaultTheme, Provider as PaperProvider } from "react-native-paper";
|
||||
import {
|
||||
MD2LightTheme as DefaultTheme,
|
||||
Provider as PaperProvider,
|
||||
} from "react-native-paper";
|
||||
import { SafeAreaProvider } from "react-native-safe-area-context";
|
||||
import Toast from "react-native-toast-message";
|
||||
import { Provider } from "react-redux";
|
||||
import { PersistGate } from "redux-persist/integration/react";
|
||||
import * as Sentry from '@sentry/react-native';
|
||||
import ScreenMainComponent from "./components/screen-main/screen-main.component";
|
||||
import { logImEXEvent } from "./firebase/firebase.analytics";
|
||||
import { client } from "./graphql/client";
|
||||
import { persistor, store } from "./redux/store";
|
||||
import "intl";
|
||||
import "intl/locale-data/jsonp/en";
|
||||
import "./translations/i18n";
|
||||
import "expo-asset";
|
||||
import Toast from "react-native-toast-message";
|
||||
import { SafeAreaProvider } from "react-native-safe-area-context";
|
||||
|
||||
import RNEventSource from "react-native-event-source";
|
||||
globalThis.EventSource = RNEventSource;
|
||||
|
||||
Sentry.init({
|
||||
dsn: "https://8d6c3de1940a4e4f8b81cf4d2150bdea@o492140.ingest.sentry.io/5558869",
|
||||
enableInExpoDevelopment: true,
|
||||
@@ -27,7 +35,6 @@ Sentry.init({
|
||||
debug: true, // Sentry will try to print out useful debugging information if something goes wrong with sending an event. Set this to `false` in production.
|
||||
});
|
||||
|
||||
|
||||
const theme = {
|
||||
...DefaultTheme,
|
||||
colors: {
|
||||
|
||||
Reference in New Issue
Block a user