Questions tagged [windows-phone-8]

Windows Phone 8, released on October 29th, 2012 and still going strong, is an innovative iteration of the Windows Phone operating system. Building upon the foundation set by its predecessor, Windows Phone 7.5, this version introduces a multitude of exciting new features to enhance user experience.

Send users from the web (using JavaScript) to the Windows Phone app, and if the app is not installed, direct them

In the following code snippet, I am using angular.js to detect the mobile platform and redirect to the native app. If the app is not installed, it will redirect to the market: $scope.isMobile = { Android: function() { return navigator.userAgent.ma ...

I require assistance with parsing the JSON outcome within a C# Windows Phone application

As a newbie in the world of developing Windows Phone apps, I am facing an issue that has been persistent even after trying out all possible solutions. The problem arises when my application tries to retrieve data from a web service, and the result it recei ...

Unable to retrieve properties post JSON deserialization into dynamic

Struggling with accessing dynamic properties post JSON deserialization. Take a look at the JSON data: { "user" : { "511221" :{ "timestamp" : 1403365646384, "version" : -81317051, "email" : "<a href="/cdn-cgi/l/email-p ...

Decoding JSON using abbreviated keys in C#

I am in the process of transferring a project from Android to Windows Phone 8 and am struggling to find information on how to specify which JSON key corresponds to each object field. In my Android code, I utilized Google GSON and the SerializedName annota ...

Leveraging AngularJS for a Windows store app

After attempting to integrate AngularJS into my Windows store application, I came across a few recommended solutions: Unfortunately, these solutions did not work as expected. While I didn't encounter the Unable to add dynamic content error, AngularJS ...

Troubleshooting AngularJS Route Issues on Windows Phone 8 with Worklight Integration

I am currently in the process of developing a Hybrid App for iOS, Android, Blackberry, and Windows using IBM Worklight. For the framework, I have chosen to use AngularJS along with HTML, CSS, and Bootstrap. Since this app is a Single Page Application (SP ...