a-ghorbani--pocketpal-ai
21 行
520 B
JavaScript
21 行
520 B
JavaScript
/**
|
|
* @format
|
|
*/
|
|
|
|
// Import URL polyfill for React Native/Hermes compatibility
|
|
import 'react-native-url-polyfill/auto';
|
|
|
|
import {AppRegistry, LogBox} from 'react-native';
|
|
|
|
// Silence LogBox in E2E builds so the in-app warning toast doesn't cover
|
|
// chat-bottom controls Appium needs. Left active otherwise so warnings
|
|
// surface during development.
|
|
if (__E2E__) {
|
|
LogBox.ignoreAllLogs(true);
|
|
}
|
|
|
|
import App from './App';
|
|
import {name as appName} from './app.json';
|
|
|
|
AppRegistry.registerComponent(appName, () => App);
|