React native 世博会图标显示为问号(?)

React native 世博会图标显示为问号(?),react-native,React Native,我使用testflight在真实设备上测试我的应用程序,但图标显示为问号,但当我使用expo应用程序(在同一设备上)测试应用程序时,它工作正常。它也可以在模拟器和android real设备上正常工作 import { FontAwesome, Ionicons, AntDesign, Entypo, Feather, Foundation } from "@expo/vector-icons"; import { Icon, Button, List, ListItem } from 'nat

我使用testflight在真实设备上测试我的应用程序,但图标显示为问号,但当我使用expo应用程序(在同一设备上)测试应用程序时,它工作正常。它也可以在模拟器和android real设备上正常工作

import { FontAwesome, Ionicons, AntDesign, Entypo, Feather, Foundation } from "@expo/vector-icons";
import { Icon, Button, List, ListItem } from 'native-base'
为了测试目的,我使用了所有这些图标来检查哪个图标有效,但它们都显示为问号

            <List>
                <ListItem>
                    <Icon name="cart" />
                </ListItem>
                <ListItem>
                    <Ionicons name="ios-home" />
                </ListItem>
                <ListItem>
                    <AntDesign name="stepforward" />
                </ListItem>
                <ListItem>
                    <Foundation name="alert" />
                </ListItem>
                <ListItem>
                    <Entypo name="credit" />
                </ListItem>
                <ListItem>
                    <Feather name="shuffle" />
                </ListItem>
            </List>