windows-phone

windows phone app update xap file

此生再无相见时 提交于 2019-12-11 02:47:44
问题 I have successfully published an app on windows phone store without any problem but when i try to publish an update of the xap file i had some problem. First I don't understand if have to replace the xap file or add new xap file with higher version number. Second, if I update the version number in the app manifest and upload the app in developer console, the version number is always 1.0.0.0. It's a bug or is normal? I tried to add a new xap with higher version number but when a user with

Cordova multiple callbacks in Windows Phone 8

你。 提交于 2019-12-11 02:36:46
问题 I have a Cordova plugin which works fine for both Android & iOS. However, it fails when ported to Windows Phone 8 because it seems that multiple outstanding callbacks are not supported in Cordova for Windows Phone. The problem is this: When a DispatchCommandResult is called with a PluginResult which has KeepCallback set to true, a further DispatchCommand from a different method will call both its callback and the previous callback (the one with KeepCallback set to true). Worse still, if the

Exception HRESULT: 0x800455BC in speech recognition in Windows phone 8

て烟熏妆下的殇ゞ 提交于 2019-12-11 02:36:04
问题 I am developing a new app where I am using the speech recognition capability for windows phone 8. However, I am getting the following exception: Exception from HRESULT: 0x800455BC at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task) at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) at System.Runtime.CompilerServices.TaskAwaiter`1.GetResult() at ExcerciseMod7Voice.MainPage.d__4.MoveNext() And this is the code I'm trying to

Creating desktop applications for Windows RT?

馋奶兔 提交于 2019-12-11 02:19:19
问题 I've installed Windows Phone SDK 8.0 and there are no project types for desktop windows RT applications. How can I develop this type of applications? 回答1: Windows Phone 8 and Windows 8 are two separate products and require 2 separate SDKs to develop for. Windows Phone 8 runs on mobile devices only, while Windows 8 runs on desktops, laptops and tablets. All you need to do to build Windows 8 apps is a machine with Windows 8 and Visual Studio 2012 installed on it. You can use the 90 day

App crashes when on Suspend

坚强是说给别人听的谎言 提交于 2019-12-11 02:09:07
问题 So I ran across some bizarre behavior. I am an the first page with a ViewModel. The ViewModel only contains a ObservableCollection. When I navigate on the second page everything seems fine. But when I suspend the app on this page, the app crashes. Long-Press Back-Button or Windows Key. The bizarre thing is, that this only happens when I am not debugging. When I am debugging everything works find. Suspend-Resume works perfectly. I could reproduce it on my Lumia 920 and the Emulator. I kinda

After first scuccessful login & logout windows live sign in button is not working on windows phone

不羁的心 提交于 2019-12-11 01:58:46
问题 Am creating an application which used Windows Phone Live Account & I referred Windows Live Sdk sample code for doing that. xaml <Grid x:Name="LayoutRoot" Background="Transparent"> <my:SignInButton Name="btnSignin" ClientId="CLIENT_ID" Scopes="wl.signin wl.basic" Branding="Windows" TextType="SignIn" SessionChanged="btnSignin_SessionChanged" HorizontalAlignment="Left" VerticalAlignment="Top" /> </Grid> Here is the logout code public void LogOut() { var authClient = new LiveAuthClient(ClientId);

how to set up windows phone develop environment and using F# to develop application?

假如想象 提交于 2019-12-11 01:25:44
问题 I have already download the windows phone develop tools but I don't know how to using F# to developing the app, currently it's C#. 回答1: Installing a template for 'F# and Windows Phone' into Visual Studio makes life a little easier. If you open Visual Studio and go to Tools->Extension Manager it will open the Extension Manager dialog. From there, if you select the online gallery and type 'F# Windows Phone' into the search box you can find a couple of templates that should help you get started.

Detecting Memory leaks tools on Wp7

荒凉一梦 提交于 2019-12-11 01:25:17
问题 Does anyone know of any good tools to detect memory leaks on the Windows phone 7.5 platform? 回答1: The built-in profiling tools are probably the best starting point. Select: Debug > Start Windows Phone Perfomance Analysis and select the the "Memory" option This will help you see any memory spikes and leaks and help you drill down to the cause. See http://msdn.microsoft.com/en-us/library/hh202934(v=vs.92).aspx and http://windowsteamblog.com/windows_phone/b/wpdev/archive/2012/02/01/memory

Microsoft push notification service pricing

☆樱花仙子☆ 提交于 2019-12-11 00:52:43
问题 I've read Microsoft documentation about Push Notification Service that they are offering for Windows phones but there is no information about pricing. I've read somewhere that it is free to use max 500 notification per day/per application/per device and it is unauthenticated mode but there is also authenticated mode which has no daily limit and cost some money. Is that true and if it is, how much is price? Also I am interested in information about saving messages in server if user is not

WP8 OnNavigatedTo fires TWICE after tapping on Toast Notification?

懵懂的女人 提交于 2019-12-11 00:02:20
问题 I'm having a weird issue (or maybe it is expected behavior that I am misunderstanding) with my Toast notification. All I want is to have the toast navigate back to the same page that the user was on when they hit the Start button. Scenario: User opens app, they are shown Page1.xaml. User taps button to navigate to Page2.xaml. From here, they hit the Start button. Here is the Toast notification I set up on Page2.xaml.cs: Microsoft.Phone.Shell.ShellToast toast = new Microsoft.Phone.Shell