windows-phone-8

PhoneGap app crashes on WP8.1

风流意气都作罢 提交于 2020-01-01 12:11:11
问题 tl;dr - I can't seem to get a PhoneGap app to run successfully on WP8.1. There are a number of problems in my process of diagnosing the issue. Setting: I created a PhoneGap 3.4 Windows Phone app, tested it on Windows Phone 8 using Visual Studio 2012 for WP, and submitted it. I got loads of crash reports from people with Windows Phone 8.1. Diagnosing the problem: I went ahead and tried to run the app on a WP8.1 emulator using Visual Studio 2013 for Windows. I get the following error:

Windows Cordova / Ionic app white screen after release build

荒凉一梦 提交于 2020-01-01 11:37:52
问题 I developed a Cordova/ionic Universal Windows app. Everything works perfectly in debug mode in the simulator and a real device. After i make a release build (Store -> Create app packages...) and start the release build or start a new debug session the app starts a "about:blank" page after the splash screen has disappeared. I have to run "ionic build windows" again to see my app. I hope anyone is familiar with this problem, its driving me crazy! Cordova CLI: 6.0.0 Ionic version: 1.2.4 Ionic

How to download files from OneDrive

℡╲_俬逩灬. 提交于 2020-01-01 10:52:50
问题 I am looking to download my files in public folder from One Drive, but it doesn't download the files. Here is the scenario: In public folder I have another folder with multiple files in it and is accessible widely. for test purpose I have shared all the files in public folder (I don't if it's proper way of sharing it). The following links are provided for me to download the file: From shared folder link https://onedrive.live.com/redir?resid=DBBC281099F4FE69!646&authkey=!AGRCGuw8Y2_p9mA&ithint

WP 8: How to deploy/export Application from Visual Studio

感情迁移 提交于 2020-01-01 10:13:43
问题 in android, we right click to our project, click export and get the apk. For windows phone 8 , in visual studio 2012, how can i export my application into my desktop or somewhere ? Anyone can help about it ? Thanks ! 回答1: Each time when you build you project - Visual Studio builds XAP file, which is actual package for uploading it to Windows Phone Store or deploying to the real device. This may help Submit your app 回答2: For Windows Phone you get a XAP file instead of an APK file. The XAP in

How to organize Windows Phone code base to target both 7.x and 8 platforms

家住魔仙堡 提交于 2020-01-01 09:58:11
问题 I took over a Windows Phone project which was previously targeting WP 7.1 platform, and with the recent announcement of the new platform it should target WP 8 as well. My VS 2010 solution consists on several projects (Data access, Model, Tests and WP7 client app) and i am wandering on how to include support for WP8. I have to note that the code-base is not compatible with WP8, due to usage of Toolkit controls and other 3rd party libraries targeted for WP7.1 specifically. Also there is another

The maximum number of developer applications on this phone has been reached

元气小坏坏 提交于 2020-01-01 08:55:09
问题 I started a Windows 8 phone application and am trying to use a NEW phone as the device for debugging. Unable to install application. The maximum number of developer applications on this phone has been reached. Please uninstall a developer application and try again. I registered the device so I do not know what the issue is. I have read about other people having the same issue but have not found a solution yet. (Windows Phone App Deployment Issue - see end comment) Just to make it clear. I

C# PCL Reading from File

只愿长相守 提交于 2020-01-01 08:43:12
问题 So I'm writing a portable class library that targets .NET 4.5, Windows 8 and Windows Phone 8. I'm trying to read from a text file that is part of the project as build content. I see that StreamReader is available in PCL's but I can't seem to find out how to get the stream from a file, given a file path. If anyone could point me to the right structures I'd appreciate it. Also if you could give direction for XML files, too. I'm only reading text files right now, but I'm going to be working in

Proper way to handle the ampersand character in JSON string send to REST web service

二次信任 提交于 2020-01-01 06:31:26
问题 OK, I am using the System.Runtime.Serialization and the DataContractJsonSerialization . The problem is that in the request I send a value of a property with the & character. Say, AT&T , and I get a response with error: Invalid JSON Data . I thought that the escaping would be done inside the library but now I see that the serialization is left untouched the ampersand & character. Yes, for a JSON format this is valid. But it will be a problem to my POST request since I need to send this to a

Registering and login users in Azure Mobile Services

旧城冷巷雨未停 提交于 2020-01-01 05:15:05
问题 I was following this series about Mobile Services and I am using examples in latest tutorial. Now I want to impelement registering and login in Windows Phone for example. I changed to Insert permission to anyone with application key and I can Insert new user by this code: await accountTable.InsertAsync(new accounts() { Username = "admin", Password = "mypassword" }); But I don't know how can I now check for login user? How to get token? 回答1: The post you referred was written at the end of last

Windows Phone Panorama with AngularJS

不问归期 提交于 2020-01-01 04:50:07
问题 I am trying to replicate the Windows Phone Ui in an AngularJS app. Here is an example of what a Windows Phone Ui looks like. Infinite Swipe One interesting thing about it is the panels are infinitely swipe-able. You can keep swiping and end up back at the first panel. To achieve the infinite swipe, I duplicate the first and last panels and add them before and after the original panels like this: If you swipe to a copied panel (like "3" or "1"): you are redirected to the real panel immediately