Logo

GitLab

Sign in

xntalk / xntalk-rnapp

  • Back to Group
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • xntalk-rnapp
  • myqrcode
  • index.android.js
  • - 修复了通行码63版本netinfo使用方法不正确的问题 ...
    f1f4c943
    - 修复了通行码63版本netinfo使用方法不正确的问题
    - 调整通行码63版本依赖版本
    钱鋆 authored
    2021-06-23 16:44:28 +0800  
    Browse Code »
index.android.js 428 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
/**
 * @format
 */

import {AppRegistry} from 'react-native';
import App from './App';
import {name as appName} from './app.json';

// if (!__DEV__) {
//     global.console = {
//         info: () => {
//         },
//         log: () => {
//         },
//         warn: () => {
//         },
//         error: () => {
//         },
//     };
//     global.debug = true;
// }

AppRegistry.registerComponent(appName, () => App);