App always hangs on Windows phone

Hi, the app ALWAYS hangs on windows phone, especially when switching between apps, other times it just crashes. I have a 50/50 chance that something goes wrong when trying to change song or jump back into Spotify when playing.

Which version of the LiveSDK are you currently using?

Similar Messages

  • Can I submit apps built with Windows Phone 8.0 SDK or do all new apps have to be windows Phone 8.1

    I thought this would be an easy question to google but I can't find a simple Yes or No. 
    My app uses some components that are not currently developed for windows phone 8.1 so I was going to build the app in the Windows Phone 8.0 SDK. But I know that other platforms stop you submitting apps in older SDK's, but what about Microsoft? Can I still
    submit a brand new app built on the Windows Phone 8 SDK?

    you can submit , I have submitted a new windows phone 8 app recently which will support on windows 8.1 phone also. In case of 8 the build will be .xap and in case of 8.1 it will  app.package . when you run your windows 8 app in 8.1 phone it will
    internally convert xap to package and it runs as usually. I would suggest you to start developing in 8.1 apps which has lot more flavors added(ex: Geo fencing etc).
    Purushothama V S

  • How to use the code written in App.Xaml.cs in Windows Phone 8 in Windows Phone 8.1 Universal Apps

    i have a App.xaml.cs file in Windows Phone 8.0 , amd i want to use the code in that file to make work with App.xaml.cs file in Windows Phone 8.1 Universal Apps
    My Windows Phone 8 App.xaml.cs file is like as below
    namespace OnlineVideos
    public partial class App : Application
    #region Initialization
    public static dynamic group = default(dynamic);
    public static dynamic grouptelugu = default(dynamic);
    public static ShowList webinfo = default(ShowList);
    public static WebInformation webinfotable = new WebInformation();
    AppInitialize objCustomSetting;
    IsolatedStorageSettings settings = IsolatedStorageSettings.ApplicationSettings;
    DispatcherTimer timer;
    IsolatedStorageFile isoStore = IsolatedStorageFile.GetUserStoreForApplication();
    public static bool AdStatus = false;
    public App()
    UnhandledException += Application_UnhandledException;
    if (System.Diagnostics.Debugger.IsAttached)
    Application.Current.Host.Settings.EnableFrameRateCounter = true;
    //RootFrame.UriMapper = Resources["UriMapper"] as UriMapper;
    AppSettings.NavigationID = false;
    objCustomSetting = new AppInitialize();
    timer = new DispatcherTimer();
    Constants.DownloadTimer = timer;
    InitializeComponent();
    InitializePhoneApplication();
    #endregion
    #region "Private Methods"
    void StartDownloadingShows()
    timer.Interval = TimeSpan.FromSeconds(10);
    timer.Tick += new EventHandler(timer_Tick);
    timer.Start();
    void timer_Tick(object sender, EventArgs e)
    try
    BackgroundWorker worker = new BackgroundWorker();
    worker.DoWork += new DoWorkEventHandler(StartBackgroundDownload);
    worker.RunWorkerCompleted += new RunWorkerCompletedEventHandler(worker_RunWorkerCompleted);
    worker.RunWorkerAsync();
    catch (Exception)
    void worker_RunWorkerCompleted(object sender, RunWorkerCompletedEventArgs e)
    if (AppSettings.StopTimer == "True")
    timer.Stop();
    AppSettings.StopTimer = "False";
    async void StartBackgroundDownload(object sender, DoWorkEventArgs e)
    switch (AppSettings.BackgroundAgentStatus)
    case SyncAgentStatus.DownloadFavourites:
    if (AppSettings.DownloadFavCompleted == false && AppSettings.SkyDriveLogin == true)
    Deployment.Current.Dispatcher.BeginInvoke(() =>
    timer.Stop();
    ReStoreFavourites reStoreFav = new ReStoreFavourites();
    await reStoreFav.RestorefavFolder(ResourceHelper.ProjectName);
    Deployment.Current.Dispatcher.BeginInvoke(() =>
    AppSettings.BackgroundAgentStatus = SyncAgentStatus.UploadFavourites;
    timer.Start();
    else
    AppSettings.BackgroundAgentStatus = SyncAgentStatus.UploadFavourites;
    break;
    case SyncAgentStatus.UploadFavourites:
    bool result = Task.Run(async () => await Storage.FavouriteFileExists("Favourites.xml")).Result;
    if (AppSettings.SkyDriveLogin == true && result)
    Deployment.Current.Dispatcher.BeginInvoke(() =>
    timer.Stop();
    UploadFavourites upLoad = new UploadFavourites();
    await upLoad.CreateFolderForFav(ResourceHelper.ProjectName);
    Deployment.Current.Dispatcher.BeginInvoke(() =>
    AppSettings.BackgroundAgentStatus = SyncAgentStatus.DownloadParentalControlPreferences;
    timer.Start();
    else
    AppSettings.BackgroundAgentStatus = SyncAgentStatus.DownloadParentalControlPreferences;
    break;
    case SyncAgentStatus.RestoreStory:
    if (AppSettings.DownloadStoryCompleted == false && AppSettings.SkyDriveLogin == true && (ResourceHelper.ProjectName == "Story Time" || ResourceHelper.ProjectName == "Vedic Library"))
    Deployment.Current.Dispatcher.BeginInvoke(() =>
    timer.Stop();
    RestoreStory restore = new RestoreStory();
    //if (ResourceHelper.ProjectName == "Story Time")
    await restore.RestoreFolder("StoryRecordings");
    //else
    // await restore.RestoreFolder("VedicRecordings");
    Deployment.Current.Dispatcher.BeginInvoke(() =>
    AppSettings.BackgroundAgentStatus = SyncAgentStatus.UploadStory;
    timer.Start();
    else
    AppSettings.BackgroundAgentStatus = SyncAgentStatus.UploadStory;
    break;
    case SyncAgentStatus.UploadStory:
    if (AppSettings.SkyDriveLogin == true && (ResourceHelper.ProjectName == "Story Time" || ResourceHelper.ProjectName == "Vedic Library"))
    Deployment.Current.Dispatcher.BeginInvoke(() =>
    timer.Stop();
    UploadStory st = new UploadStory();
    //if (ResourceHelper.ProjectName == "Story Time")
    await st.CreateFolder("StoryRecordings");
    //else
    // await st.CreateFolder("VedicRecordings");
    Deployment.Current.Dispatcher.BeginInvoke(() =>
    AppSettings.BackgroundAgentStatus = SyncAgentStatus.DownloadFavourites;
    timer.Start();
    else
    AppSettings.BackgroundAgentStatus = SyncAgentStatus.DownloadFavourites;
    break;
    default:
    ShowDownloader.StartBackgroundDownload(timer);
    break;
    #endregion
    #region "Application Events"
    private void pop_Opened_1(object sender, EventArgs e)
    DispatcherTimer timer1 = new DispatcherTimer();
    timer1.Interval = TimeSpan.FromSeconds(5);
    timer1.Tick += timer1_Tick;
    timer1.Start();
    void timer1_Tick(object sender, EventArgs e)
    (sender as DispatcherTimer).Stop();
    Border frameBorder = (Border)VisualTreeHelper.GetChild(Application.Current.RootVisual, 0);
    Popup Adc = frameBorder.FindName("pop") as Popup;
    Adc.IsOpen = false;
    private void Application_Launching(object sender, LaunchingEventArgs e)
    SQLite.SQLiteAsyncConnection conn = new SQLite.SQLiteAsyncConnection(Constants.DataBaseConnectionstringForSqlite);
    Constants.connection = conn;
    AppSettings.AppStatus = ApplicationStatus.Launching;
    AppSettings.StopTimer = "False";
    objCustomSetting.CheckElementSection();
    SyncButton.Login();
    if (AppSettings.IsNewVersion == true)
    AppSettings.RatingUserName = AppResources.RatingUserName;
    AppSettings.RatingPassword = AppResources.RatingPassword;
    AppSettings.ShowsRatingBlogUrl = AppResources.ShowsRatingBlogUrl;
    if (ResourceHelper.AppName == Apps.Online_Education.ToString() || ResourceHelper.AppName == Apps.DrivingTest.ToString())
    AppSettings.QuizRatingBlogUrl = AppResources.QuizRatingBlogUrl;
    AppSettings.LinksRatingBlogUrl = AppResources.LinksRatingBlogUrl;
    AppSettings.ShowsRatingBlogName = AppResources.ShowsRatingBlogName;
    AppSettings.LinksRatingBlogName = AppResources.LinksRatingBlogName;
    if (ResourceHelper.AppName == Apps.Online_Education.ToString() || ResourceHelper.AppName == Apps.DrivingTest.ToString())
    AppSettings.QuizLinksRatingBlogName = AppResources.QuizLinksRatingBlogName;
    Constants.UIThread = true;
    group=OnlineShow.GetTopRatedShows().Items;
    grouptelugu = OnlineShow.GetRecentlyAddedShows().Items;
    Constants.UIThread = false;
    StartDownloadingShows();
    private void Application_Activated(object sender, ActivatedEventArgs e)
    AppSettings.AppStatus = ApplicationStatus.Active;
    if (ResourceHelper.AppName == Apps.Kids_TV_Pro.ToString())
    AppSettings.ShowAdControl = false;
    private void Application_Deactivated(object sender, DeactivatedEventArgs e)
    AppSettings.AppStatus = ApplicationStatus.Deactive;
    AppState.RingtoneStatus = "TombStoned";
    private void Application_Closing(object sender, ClosingEventArgs e)
    AppSettings.AppStatus = ApplicationStatus.Closing;
    private void Application_UnhandledException(object sender, ApplicationUnhandledExceptionEventArgs e)
    FlurryWP8SDK.Api.LogError("Error at Application_UnhandledException in App.xaml.cs", e.ExceptionObject.InnerException);
    if (System.Diagnostics.Debugger.IsAttached)
    System.Diagnostics.Debugger.Break();
    else
    Exceptions.SaveOrSendExceptions("Exception in Application_UnhandledException Method In App.xaml.cs file.", e.ExceptionObject);
    e.Handled = true;
    return;
    #endregion
    #region Phone application initialization
    public PhoneApplicationFrame RootFrame { get; private set; }
    // Avoid double-initialization
    private bool phoneApplicationInitialized = false;
    // Do not add any additional code to this method
    private void InitializePhoneApplication()
    if (phoneApplicationInitialized)
    return;
    // Create the frame but don't set it as RootVisual yet; this allows the splash
    // screen to remain active until the application is ready to render.
    RootFrame = new PhoneApplicationFrame();
    if (App.Current.Resources["AdVisible"] as string == "True")
    RootFrame.Style = App.Current.Resources["RootFrameStyle"] as Style;
    RootFrame.ApplyTemplate();
    RootFrame.Navigated += CompleteInitializePhoneApplication;
    // Handle navigation failures
    RootFrame.NavigationFailed += RootFrame_NavigationFailed;
    // Ensure we don't initialize again
    phoneApplicationInitialized = true;
    //NonLinearNavigationService.Instance.Initialize(RootFrame);
    private void RootFrame_NavigationFailed(object sender, NavigationFailedEventArgs e)
    if (System.Diagnostics.Debugger.IsAttached)
    System.Diagnostics.Debugger.Break();
    else
    Exceptions.SaveOrSendExceptions("Exception in RootFrame_NavigationFailed Method In App.xaml.cs file.", e.Exception);
    e.Handled = true;
    return;
    // Do not add any additional code to this method
    private void CompleteInitializePhoneApplication(object sender, NavigationEventArgs e)
    // Set the root visual to allow the application to render
    if (RootVisual != RootFrame)
    RootVisual = RootFrame;
    // Remove this handler since it is no longer needed
    RootFrame.Navigated -= CompleteInitializePhoneApplication;
    #endregion
    Mohan Rajesh Komatlapalli

    Basically you are asking as how to port silverlight to Xaml (RT). Go one by one converting each API from silverlight to XAML, like IsolatedStorage isn't there in RT, so look for its alternative etc.
    See here the namespace/class mappings : Windows Phone Silverlight to Windows Runtime namespace and class mappings
    http://developer.nokia.com/community/wiki/Using_Crypto%2B%2B_library_with_Windows_Phone_8

  • Can`t exit from the app corner mode in windows phone 10 technical preview at Nokia Lumia 520

    After upgrading to windows phone 10, I just face several bugs as expected, including screen unlock bug. I just try app corner feature on my phone. That`s led to a big mistake. I can`t exit from the app corner mode. While pressing the power off
    button and swap right, nothing happens. (In lock screen, it doesn`t show that swap right to exist. I think this problem also related to locks screen bug.  Even I try  to remove the battery. But, still I struck at app corner. Please
    help me come out this problem!!!
    Thanks in advance
    Mohamed Usman
    www.neotech4u.weebly.com

    Very very disappointed. Sorry about windows phone. I have argued quit a lot with friends. Trying to convince them that WP are extremely good and nice to work with. Unfortunately they keep telling me about the poor apps of WP. Unfortunately I can now start seeing the problem. Guess what, I wasconsidering of buying my father a WP. Guess what. I will probably stick to android. Badly played about that. Farewell. Disappointed 7.8 WP customer from Athens Greece.

  • Chase Banking app not supported on Windows Phone

    I used to check my bank account on my Nokia Lumia 925 smartphone, but it is no longer available. I asked at my local Chase Bank and was told that Microsoft no longer wanted to support this app. This is a major inconvenience for me, enough for me to consider
    getting rid of my phone and getting an Android or Apple phone instead.
    TwidaleM

    Hi,
    Probably you have to try with Sencha support as well.
    As you mentioned two of your apps are working, problem must be with the APIs which you used on third platform.
    Generally, your app should work on WP8.1 also with out changes. But it is difficult to analyze the problem with out knowing what you have written.
    -Malleswar

  • Out Of Memory Exception While Loading Images in Windows Phone 8 Silverlight App?

    Hi,
    I am developing a windows phone 8 silver light app , I am loading high resolution images from web  through image control , After loading 2-3 images I am getting outof memory exception ,
    I am unable to catch this , and I am unable to break this exception , Can anyone tell me how to handle this exception,
    I am searching solution for this  from last 15 days but I am unable to find solution,
    I tried by setting the bitmap image source to null by doing this also I am getting exception, I tried by using gc.collect() also ..
    First I am loading list of images in listbox with lowres of size 100X100 , in selection change event I am changing the image source , 
    My image control code is
    <Canvas Width="480" Height="720">
    <Image Width="480" x:Name="MyImage" Height="720" Stretch="Uniform" >
    <Image.Source>
    <BitmapImage x:Name="MyImage1"/>
    </Image.Source>
    <toolkit:GestureService.GestureListener>
    <toolkit:GestureListener Flick="GestureListener_Flick_1"
    PinchStarted="OnPinchStarted" DragDelta="GestureListener_DragDelta"
    PinchDelta="OnPinchDelta"/>
    </toolkit:GestureService.GestureListener>
    <Image.RenderTransform>
    <CompositeTransform x:Name="myTransform"
    ScaleX="1" ScaleY="1"
    TranslateX="0" TranslateY="0"/>
    </Image.RenderTransform>
    </Image>
    </Canvas>
    My listbox selection changed code is
    GC.Collect();
    GC.WaitForPendingFinalizers();
    Classes.PgaeInfo ob = listpages.SelectedItem as Classes.PgaeInfo;
    progressLoad.Visibility = Visibility.Visible;
    LayoutRoot.Opacity = 0.8;
    LayoutRoot.IsHitTestVisible = false;
    StackPanel st = sender as StackPanel;
    index = ob.pId - 1;
    JArray jsonArray = JArray.Parse(json);
    JToken jsonArray_Item = jsonArray[index];
    string sour = "xxx.xxx.xxx.jpeg" (only one image for sample)
    img.Source = null;
    DisposeImage(bm);
    img.Source = new BitmapImage(new Uri(sour));
    MyImage1.UriSource = null;
    MyImage1.DecodePixelHeight = (int)img.Height;
    MyImage1.DecodePixelWidth = (int)img.Width;
    MyImage1.UriSource = new Uri(sour);
    Any help..
    thanks..
    Suresh.M

    Hello Suresh,
    Are you loading multiple images at once on one page? If so this is an expected behavior. There is limited memory available per app so it's important to not load too large or too many photos at once in your app.
    If possible you can try to convert your Windows Phone 8 to Window Phone 8.1 so as to take advantage of the FlipView control which is built to handle photo gallery-like applications.
    Also you can always run the Windows Phone Application Analysis tool to check on the application performance and memory usage. This will help you test and fine tune your app accordingly.
    Let me know if this helps.
    Abdulwahab Suleiman

  • AIO Remote app cant find HP 7150 aio printer on my wifi network, on Windows Phone 8

     HI,
    Yesterday I install You App AIO Remote on Windows Phone 8. I have connected to wifi HP 7150 aio printer, but phone cant find this printer... I have Lumia 1520 and Lumia 920 smartphones both is connect to this same wifi network like printer, but You app on both Lumias cant find printer, again but no problem is to connect to printer WEB interface from this both Lumias, so wifi network is correct configured.
    I have two tablet more in this same wifi network, both with windows 8.1 x64 systems, on this, You Windows 8 modern App AIO Remote find this same printer without problem...
    So what is wrong ? printer config ? eprint is on, ipp is on, bonjur is on, ip is static.
    Please help Me becease I wait for this app and now i cant use them
     Thanx
    Peter

    Hi Peter,
    Welcome to the HP Support Forums.  I understand that you are trying to use the new HP AiO Remote app for Windows phones to print to your Photosmart 7150 printer.
    The Photosmart 7150 printer only supports USB connectivity, I have include the Photosmart 7150 Printer Specifications for reference.  To be able to use the HP AiO Remote app the printer needs to be connected to a wireless network. 
    If you accidentally typed the incorrect printer model, please let me know which make/model/product number of HP printer that you have. How Do I Find My Model Number or Product Number?
    Regards,
    Happytohelp01
    Please click on the Thumbs Up on the right to say “Thanks” for helping!
    Please click “Accept as Solution ” on the post that solves your issue to help others find the solution.
    I work on behalf of HP

  • How to make backward compatibility of windows phone 8.1 app for windows phone 7?

    I developed windows phone 8.1 app which is in windows phone store. Now, i want to make this app compatible for windows 7 also. Is it possible, if yes then how?

    It may be that you are using non-backward compatible capabilities in your Windows Phone 8.1 app(s).
    Developers that want to develop for different OS's usually have platforms with the different OS's on them for developing applications so they work on each platform.
    I suppose you developed for Windows phone 8.1 rather than Windows phone 7. Therefore your app runs on a different framework than a Windows phone 7 has as well as probably newer hardware with greater capabilities.
    So you will probably need to purchase an older phone that came with Windows phone 7 in order to develop for. I couldn't find documentation like the last link below (App capabilities and hardware requirements for Windows Phone 8) for Windows phone 7
    from Microsoft but maybe you can.
    Windows Phone OS 7.1 - Developing a Windows Phone Application from Start to Finish
    Types of Applications
    The Windows Phone application platform provides two frameworks for developing applications:
    Silverlight
    The Silverlight framework supports event-driven, XAML-based application development.
    XNA
    The XNA Framework supports loop-based games.
    Silverlight and XNA can also be combined in a single application.
    The following table lists some of the criteria that you can use to determine whether you should use Silverlight or the XNA Framework for your Windows Phone application. With Windows Phone OS 7.1, you can combine Silverlight and XNA into one application. 
    For more information about Silverlight and XNA, see
    The Silverlight and XNA Frameworks for Windows Phone. For more information about the application platform, see
    Application Platform Overview for Windows Phone.
    What's New in Windows Phone 8.1
    Platform convergence with Windows Store apps
    Windows Phone 8.1 introduces an important change in the Windows Phone developer ecosystem. In this release, Windows Phone converges with the Windows Store apps platform into a single developer platform that runs the same types of apps—Windows Runtime apps.
    Platform convergence began in Windows Phone 8, which supports a small subset of Windows Runtime APIs, but which differs from Windows in many core areas. In Windows Phone 8.1, there’s so much more in common—a much larger API set, a similar app model
    and life cycle, a shared toolset, a common UI framework—Windows Phone and Windows Store app developer platforms truly have become one, single development platform.
    Of course there are still some small differences in behavior and supported features between Windows Phone and Windows Store apps. Some of these are the result of timing of the different product cycles, and they may not appear in future releases. Some differences
    are the result of the different natures of phones and computers, their sizes, and the way people use them. We encourage developers to think in terms of Windows app development—developing for a single Windows Runtime, but targeting two different platforms on
    phones and computers.
    Required Tools for Windows Phone Development
    App capabilities and hardware requirements for Windows Phone
    8
    La vida loca

  • App for Windows Phone tablet can be made with Silverlight?

    Hi,
    I just came back to develop for WP. Last time I did it there was only Silverlight, but now we have WinRT and Silverlight. I want to create app mainly focused on tablets is better to use WinRT or Sliverlight? Or maybe I have no choice and I have to use WinRT?

    Windows Phone Silverlight apps run only on Windows Phone. To run on all devices (desktop, laptop, tablet, phone, etc) you'll need a Windows Runtime app.

  • Nokia HERE apps for Windows Phone 7.8

    Today Nokia released the HERE apps for the entire Windows Phone 8 family, that means, Nokia Lumia devices and HTC/Samsung/Huawei devices too. A few weeks ago it was even launched for iOS devices, that's iPhone. I've even heard that you people are working on porting those apps to Android. Now... why aren't Windows Phone 7.8 users like me stuck in the dark with no HERE apps? I currently have a Samsung Focus v1.3 which barely runs the integrated maps app, but honestly it sucks. I would love if Nokia could give us WP7.8 users some love, at least with the basic Maps app specially to have offline maps. Drive would be nice too, but it's not a really big deal to keep this devices "alive" for a couple of months. Currently my wife has a Lumia 800 and of course she's happy with it, looking forward to change it for a Lumia 920 when it arrives to her carrier, but since I use a prepaid line for better economy I'm not able to opt for a change and I'll have to stick with the Focus for a while as I can get a Lumia 920. So please, just think about it, I'm a developer for the platform, I know it's not hard to port that app for offline map catching, I realy doesn't matter if there's no 3D maps and all the navigation features, but it really would be nice and much of a need to have a decent offline maps app in Windows Phone 7.8.
    David Salazar
    Software Engineer

    Nokia Maps/drive has been made available to other OEMs to license for their devices afaik.. If Samsung or whoever choose not to that's up to them. For Windows Phone 8 this is a different story as maps is integrated much more deeply there.
    Click on the blue Star Icon below if my advice has helped you or press the 'Accept As Solution' link if I solved your problem..

  • GetUserEvent hangs on Windows 7

    Hi,
    All of our applications are written in C++ using Visual Studio with LabWindows providing the UIR and API calls to interact with the GUIs. The apps are multithreaded with each GUI being on a separate thread for increased fidelity. We use GetUserEvent() with the appropriate panel id to retrieve events for each panel within its thread and then process the events returned, again, in the same thread.
    This has worked very well for us until we tried to run our applications on Windows 7. The first thread (and hence the first panel) works just fine. However when a second panel is displayed the application hangs. I've traced this to the second GetUserEvent() call, in the second thread, not returning and so the first one hangs as well.
    We are using Visual Studio 2010 and LabWindows 2009. The applications can be built on either an XP or Windows 7 box but will run ONLY on XP. No matter how they're built they always hang on Windows 7. I've also gone backwards to Visual Studio 2005 and LabWindows 8.5 with the same result.
    Has anyone seen this issue on Windows 7? I'm assuming that it's a Windows 7 issue since XP is fine and it also hangs in XP mode on Windows 7.
    Thanks,
    Matt

    Hi Matt,
    Could you create a small version of the code that recreates the issue and post it? This way we can try to reproduce the issue and see what could be causing the problem.
    Thank you!
    Chris T.
    Applications Engineer
    National Instruments

  • Thinking about selling Iphone 5 for new WIndows Phone

    So I am a new Iphone 5 user. Went from a Motorola Droid to an Apple product. I must say I like the Iphone 5, but I like the new windows phone. I have even thought about selling my Iphone 5 to get the Windows phone. ANyone have any thoughts about the windows phones compared the the Iphone 5?

    As a past user of an iPhone 4 and a Windows Phone 7.5 device, I would say that the user experiences are similar, with the exception of far fewer apps being available for Windows Phone.  However, there are several apps available and I could find a livable level of satisfaction with the app selection.  There are fewer accessories available for any Windows Phone device (or any other phone, for that matter) than for the iPhone.  One thing that I think that has changed for Windows Phone 8 is that users will no longer sync through Zune on the PC.  I'm not up-to-speed with this part, so if this is important to you, you might want to research this further.
    The other thing that may impact your user experience would be how integrated into Apple's ecosystem you are.  Even though you said that you just got the iPhone 5, I don't know if you are an iPad or iPod user that relied on iTunes for content management.  Your other ecosystem concerns would include whether or not you use iCloud for media storage and whether or not your friends send you text messages in iMessage.  If none of these things are big deals for you, then a switch to a different mobile OS may be fine.
    Your other differences are your hardware differences.  You didn't name a specific Windows Phone device, but I think that every Windows Phone that is coming out is larger than an iPhone 5.  Were you attracted to the thin and light profile of the iPhone 5, or did you think that the screen was too small?  The cameras on the iPhone 5 and the upcoming Windows Phone devices are said to rival each other, so that probably won't be a major consideration for you.
    There are many other things to consider, but hopefully my questions will remind you of what you consider to be important, and you can go from there.  I always recommend hands-on time with a new device that you are considering, so go to stores to try out Windows Phone devices to get more of a feel for them.

  • XAP Applications are not getting published in Windows Phone 8.1 Emulator

    I've SCCM + Intune integrated environment (trail version of Intune). Enrolled Windows phone 8.1 (emulator) device into the infrastructure. 
    I'm able to login to company portal and can see the devices associated with my user name in the company portal however I'm not able to publish any of the apps. It says your query didn't return any results :(
    I tried all the following types of apps (Windows apps in the windows store, Windows Phone app package and Windows phone app package in the windows phone store) but nothing getting published :( any clue ?
    Anoop C Nair (My Blog www.AnoopCNair.com)
    - Twitter @anoopmannur -
    FaceBook Forum For SCCM

    Yes, at last issue got resolved :)
    http://anoopcnair.com/2014/11/11/xap-applications-published-windows-phone-8-1-intune-integrated-sccm-2012-r2/
    Anoop C Nair (My Blog www.AnoopCNair.com)
    - Twitter @anoopmannur -
    FaceBook Forum For SCCM

  • Windows phone 8.1 install

    I migrated my store app from Silverlight to Windows phone 8.1. If the app is updated direct from the store without uninstalling the previous app, the app after installation launches direct to the page where it was when the installation took place and bypasses
    the login.  As a result there is no data to show.  Some clients are experiencing app crashes directly after installation if the previous app is not uninstalled.  I have spent a lot of time with the suspend and resume functions in the App class
    trying to debug this.  Can you please help me as I don't know where I should look to rectify this.  I have also observed this for phone 8.1 to 8.1 app installs.

    It sounds like it's logging in automatically because the credentials it uses are still in the app data folder.  You should create a flag to see if this is the first time they've run this version of the app, then force a login if it is.
    Matt Small - Microsoft Escalation Engineer - Forum Moderator
    If my reply answers your question, please mark this post as answered.
    NOTE: If I ask for code, please provide something that I can drop directly into a project and run (including XAML), or an actual application project. I'm trying to help a lot of people, so I don't have time to figure out weird snippets with undefined
    objects and unknown namespaces.

  • Logic Express 7.2 don't start, always hangs!

    Hi,
    Logic Express 7.2 and the newest GarageBand is not working with my dual 2.7 G5. Even after the migration from my dual 2.5 G5 to this computer, these apps are not running. Before on my dual 2.5 G5 I also had no luck to get these apps to work. Restart won't help, now I quit every application and always tried to start these apps, because I thought of an application conflict. But this doesn't help. Next I treid the steps provided by some users here in the forum - like deleting plist, dupliate loops and index folders. Nothing worked. Seems the apps always hang at the CoreAudio init. Someone have a advice for me?
    Thx,
    Marty

    I had the same problem. You have an expired software synth, demo software, unsupported VST or AU or something that is causing Core Audio to not load. The offending file should be in library/application support/logic - clear out REX Shared Library, Rewire, or any third party, i.e. Native Instruments etc. software support files.
    I'm not sure what was causing the hang for me as I removed a bunch of this stuff at the same time but Logic and Garageband came back after some spring cleaning.
    Be patient and thorough and you'll figure it out.

Maybe you are looking for