When I built my iOS app, it opened perfectly in the simulator on my Macbook. When I publish the app on the itunes store, the app does not work anymore. The splashscreen is shown, but stays on the screen.
14
votes
8 Answers
18
votes
2
votes
1
votes
1
votes
1
votes
I had this problem with an android build of an app that uses multiple flavors, but in the end it turned out I was simply using the wrong APK file.
So the build created 3 apk files eg.
myapp.apk
myapp-test-debug.apk
myapp-test-release.apk
My assumption was to use the test-release.apk which got the app stuck on the splash screen. Using the myapp.apk did not have this problem.
Bit of a facepalm moment for myself but maybe this helps someone else looking for an answer!
0
votes
0
votes