3

I've just deployed my application on TestFlight for internal test. When I install my app on my iPhone and launch it, it crashed on the splash screen. But when I deploy my application on my phone with xcode, it works perfectly.

Does anyone know what the problem is?
  Thanks in advance.

EDIT: I use Xcode. After the launch screen, i display a login windows. It just initialize some UIImage (like background) and create my tables in my DB SQLite :/

FIXED ! One of my library wasnt loaded ! for fixed that, i added this library in "embedded binaries" in the general setting of my app :)

Persilos
  • 122
  • 1
  • 16

3 Answers3

2

I fixed it ! Thank you all for yours responses. That was a library loading problem.

I edited my original post with the solution.

Persilos
  • 122
  • 1
  • 16
0

You can try archive ipa from XCode and install it via iTunes, is it crashed?

I meet the same problem when I test it work correct in my phone but Apple Reviewer say it crashed when start up app.

My problem: When start app, I have a processing data so long in main thread, it's freeze app about 10s, app will be killed.

Nguyen Tran
  • 158
  • 8
  • My app crashed after 1 or 2 second only :/ – Persilos May 09 '15 at 16:37
  • http://stackoverflow.com/questions/4149960/iphone-app-crashes-only-in-release-mode-on-3g Do you try this? "Optimization Level" set None for release mode. Sometimes I met this issue – Nguyen Tran May 11 '15 at 12:00
0

Ensure the target deployment iOS version is compatible with the user's iOS version.

Sometimes users on testflight don't update iOS, or iOS releases an update that the user installs immediately and the build actually isn't compatible.

I had this particular experience with Crashlytics and iOS 8.1 -> 8.2

Lytic
  • 786
  • 5
  • 12
  • I launched the app on my phone with testflight too, and it crashed. :/ My iOS version is the last and support my app. – Persilos May 09 '15 at 16:35