linphone-developers
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Linphone-developers] iPhone app crash


From: Joshua Newar
Subject: [Linphone-developers] iPhone app crash
Date: Thu, 17 Feb 2011 12:08:08 +0100

Hello,

I discovered a minor bug in the iPhone app.

1) When you install the app fresh a warning will show up saying: 
"It seems you have not configured any proxy server from settings"
You have to options: 'Continue' or 'Never Remind'.

2) Choose the option 'Never Remind'.

3) Quit the app (completely quit it also from the dock).

After that you will not be able to start the app - it will crash during start up.


The solution is very easy.
In linphoneAppDelegate.m there is a section (on line 512):
} else if (configCheckDisable == false) { 
UIAlertView* error = [[UIAlertView alloc] initWithTitle:@"Warning"
message:@"It seems you have not configured any proxy server from settings" 
  delegate:self 
  cancelButtonTitle:@"Continue" 
  otherButtonTitles:@"Never remind",nil];
[error show];
proxyReachability=SCNetworkReachabilityCreateWithName(nil, "linphone.org");


}

if you change it to:
} else {
if (configCheckDisable == false) { 
UIAlertView* error = [[UIAlertView alloc] initWithTitle:@"Warning"
message:@"It seems you have not configured any proxy server from settings" 
  delegate:self 
  cancelButtonTitle:@"Continue" 
  otherButtonTitles:@"Never remind",nil];
[error show];
}
proxyReachability=SCNetworkReachabilityCreateWithName(nil, "linphone.org");


}

This problem is solved.

Cheers,
Joshua Newar

On Feb 17, 2011, at 08:28 , Jehan Monnier wrote:

Hi,

Thanks for you report. Did you get the application from the apple store or did you recompiled from the source ?

Le 16 févr. 2011 à 05:01, red rotors a écrit :

Hi,
I wanted to let you know about a problem i experience with Linphone on iphone 1st generation. It does not ring for incoming calls. Still brings up the answer button but no ringing. I am using a Linphone free VOIP acct. and an IPKall #. Otherwise functions fine. Other softphone installation (siphon, acrobits) on the same phone do ring on incoming calls.

Cheers,
Red


_______________________________________________
Linphone-developers mailing list
address@hidden
http://lists.nongnu.org/mailman/listinfo/linphone-developers

_______________________________________________
Linphone-developers mailing list
address@hidden
http://lists.nongnu.org/mailman/listinfo/linphone-developers


reply via email to

[Prev in Thread] Current Thread [Next in Thread]