
(New expo dev) Expo app opens to a cropped version of default icon.png
Ok, so I recently created an using the default expo template with sdk 54. I added some simple ui and backend stuff
Now for my onboarding page i put it in a directory in app, then like usual setup a redirect to /onboarding in index.
Current index:
import { Redirect } from "expo-router";
export default function Index() {
return <Redirect href="/onboarding" />;
}
The issue is, that my app loads up to this version of icon.png (in assets), ive tried everything, such as fixing my onboarding, changing link apis. I've tried asking claude, but it has no clue. Unfortunately, I'm coding via windows computer, I have yet to setup xcode. So really what I'm doing is using an unsigned ipa via github actions. Anyone have any idea what may be going on? Sorry, I just switched from flutter to RN and expo.