所以我正在使用 expo 构建一个应用程序 apk 文件,并且我指向 app.json 上的启动画面图像。
{
"expo": {
"name": "D&D Monster Reference",
"slug": "dnd-monster-reference",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/icon.png",
"splash": {
"mdpi": "./assets/splashScreen/splash-port-mdpi.png",
"ldpi": "./assets/splashScreen/splash-port-ldpi.png",
"hdpi": "./assets/splashScreen/splash-port-hdpi.png",
"xhdpi": "./assets/splashScreen/splash-port-xhdpi.png",
"xxhdpi": "./assets/splashScreen/splash-port-xxhdpi.png",
"xxxhdpi": "./assets/splashScreen/splash-port-xxxhdpi.png",
"resizeMode": "cover"
},
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"supportsTablet": true
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/icon.png",
"backgroundColor": "#FFFFFF"
},
"package": "com.example.example",
"versionCode": 1
},
"web": {
"favicon": "./assets/favicon.png"
}
}
}
但是当我安装该应用程序时,我得到了这个默认图像作为我的启动画面。
我在这里做错了吗?我在世博会文档上没有找到任何关于它的信息。
答案 0 :(得分:0)
如果我理解正确的问题,您在启动应用程序时仍然看到博览会启动画面吗?转到 android/app/src/main/res/drawable
并查看图像是否存在,如果已删除并再次测试。