I'm developing a mobile app for my final year project in university using React Native
and Expo
. I was able to generate a .apk
file using expo build:android
and then selecting the 'apk'
option. I could then download that .apk file on to real android devices to test the app.
I want to do the same thing for iOS. When I ran expo build:ios I selected the 'simulator' option and I was able to download a .app file. When I tried to airdrop this to my iPhone I could either choose to open it in the App Store or else my files but neither worked - I'm pretty sure it needs to be a .ipa
file for it to be sideloaded.
I tried choosing the 'archive'
option but it was asking for an Apple Developer login - which I don't have.
As this is only a final year university project, I do not want to enroll as an Apple Developer or anything like that - I just simply want to generate an .ipa
file from expo so I can send it to my friends to test on their phones to get feedback.
Thanks in advance.