completion

This commit is contained in:
2025-08-06 13:49:11 +08:00
commit c2d7317897
684 changed files with 92987 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
import { AppRegistry } from 'react-native';
import { exceptionHandler } from '~/lib/services';
import App from '~/App';
import codePush from 'react-native-code-push';
import { name as appName } from './app.json';
if (!__DEV__) {
exceptionHandler.setJsExceptionHandler();
}
const AppWithCodePush = codePush(App);
AppRegistry.registerComponent(appName, () => AppWithCodePush);