mobile-voice commit

This commit is contained in:
Ryan Vogel
2026-03-28 13:30:21 -04:00
parent f276a8db42
commit cf79208055
64 changed files with 12375 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
import React from 'react';
import { Slot } from 'expo-router';
import { LogBox } from 'react-native';
import { initExecutorch } from 'react-native-executorch';
import { ExpoResourceFetcher } from 'react-native-executorch-expo-resource-fetcher';
import {
configureNotificationBehavior,
registerBackgroundNotificationTask,
} from '@/notifications/monitoring-notifications';
// Initialize the ExecuTorch resource fetcher before any model hooks run
initExecutorch({ resourceFetcher: ExpoResourceFetcher });
// Suppress known non-actionable warnings from third-party libs.
LogBox.ignoreLogs([
'RecordingNotificationManager is not implemented on iOS',
'[React Native ExecuTorch] No content-length header',
]);
configureNotificationBehavior();
registerBackgroundNotificationTask().catch(() => {});
export default function RootLayout() {
return <Slot />;
}

File diff suppressed because it is too large Load Diff