Expo 应用程序卡在启动画面(仅限 Android)

时间:2021-07-02 16:01:42

标签: android reactjs firebase react-native expo

我无法在 Google Play 商店中发布我的应用。该应用程序(APK 和 ABB)在 Android 设备上运行时永远不会超过启动画面。在使用模拟器或 iOS 的生产模式下不会出现此问题。

我已经按照论坛上能找到的所有故障排除指南进行操作,但无济于事:更新博览会、清除缓存、重新安装节点模块……

任何帮助将不胜感激。

我的App.JS如下:

//Dependancies
import React, {  useCallback, useEffect, useState } from 'react';
import { StyleSheet, Text, View, LogBox, } from 'react-native';
import Navigator from './app/routes/homestack';
import firebase from './app/constants/firebaseConfig';
import * as SplashScreen from 'expo-splash-screen';

//Fix expo issue with firebase and timer warning
LogBox.ignoreLogs(['Setting a timer']);

export default function App() {

  //Close splashscreen when app loaded
  const onLayoutRootView = useCallback(async() => { await SplashScreen.hideAsync(); });
  
  return(
      //Render app through stack navigator
      <Navigator onLayout={onLayoutRootView}/>
  );
  
}

0 个答案:

没有答案