Windows Phone 8 Application doesn't run if installed from Market -


i have strange problem. have windows phone 8 application, installed on phone under visual studio , works. if deploy xap using deployment tool works. submitted on market. when download app on same phone market fails run. writes "load....." , that's all.

what may reason of such behavior?

it beta version? or certified version?

if it's beta version can create "logger" catch error when quit application in

app.xaml.cs::application_unhandledexception 

and in

app.xaml.cs::rootframe_navigationfailed 

this sample:

private void application_unhandledexception(object sender, applicationunhandledexceptioneventargs e)     {         // call logger class catch message exception before application killed.         logger.debug(e.exceptionobject.message);          if (system.diagnostics.debugger.isattached)         {             // unhandled exception has occurred; break debugger             system.diagnostics.debugger.break();         }      } 

you juste save message, or/and stacktrace , send error mail.

also, can try publish application on "hidden" on store.

if certification team can launch application, , they're found no error, can download link. , try install in device. else, team found error, received documentation explain why certification failed...

if it's certified application, i've no idea bug... :'( maybe call invalid server when application launch or other error launch exception?? it's strange work visualstudio , .xap deployement...

if find solution of problem, i'm interested :-)


Comments