Retrofit crashes after unlock device

Hi,

I also noticed this weird behavior on my iOS device.
This behavior may refer to [SOLVED] iOS app crashes from Broken Pipe .
What actually helped was the following line of code in my Main Class:

    @Override
    public boolean applicationDidFinishLaunchingWithOptions(UIApplication application, NSDictionary launchOptions) {

        apple.c.Globals.sigignore(13); // avoid SIGPIPE Crashs after 2nd launch
        ....

Regards,
Jucl

1 Like