static assets not appearing in TestFlight build ipa file

I’m trying to test my app in TestFlight and none of my images are showing up when I go to test. I’ve seen a couple questions like this and have tried both ways to fix but did not help.

app.json

{
“expo”: {
“name”: “App name”,
“description”: “App description”,
“slug”: “slugname”,
“privacy”: “public”,
“sdkVersion”: “29.0.0”,
“platforms”: [“ios”, “android”],
“version”: “1.0.1”,
“orientation”: “portrait”,
“icon”: “./assets/icon.png”,
“splash”: {
“image”: “./assets/splash-screen.png”,
“backgroundColor”: “#000000
},
“updates”: {
“fallbackToCacheTimeout”: 0
},
“assetBundlePatterns”: [
“./assets/*”
],
“ios”: {
“bundleIdentifier”: “bundleidentifierpath”,
“supportsTablet”: true
},
“android”: {
“package”: “bundleidentifierpath”
}
}
}

And this is my file structure.

This topic was automatically closed 15 days after the last reply. New replies are no longer allowed.