Questions tagged [windows-10-mobile]

Windows 10 Mobile is an edition of the Windows 10 OS developed by Microsoft and was released in 2015. It is an iteration of the Windows Phone product line and a successor to Windows Phone 8.1. Windows 10 Mobile is designed for use on smartphones and phablets running on ARM processor architectures

Windows 10 Mobile is an edition of the Windows 10 operating system developed by Microsoft. This edition of Windows 10 is a mobile operating system that succeeds Windows Phone 8.1 and is designed for smartphones, and small tablets under 8 inches in screen size, running on ARM as well as IA-32 processor architectures.

Windows 10 Mobile aims to provide a larger amount of synergy with its counterpart for personal computers, including more extensive synchronization of content, a new "universal" application ecosystem that will provide the ability to port apps developed for Windows 10 on PCs, Android, and iOS to the platform, as well as the capability to, on supported hardware, connect devices to an external display and utilize a "PC-like" interface with mouse and keyboard input support.

While general availability for Windows 10 on PC is set for July 29, 2015, Windows 10 Mobile is being developed at a slower pace than the PC version and will not be available at the same time.

Read more about Windows 10 Mobile in Wikipedia.

850 questions
7
votes
2 answers

How to see (approximate) memory usage in an UWP App while it's running

According to this article on Diagnosing memory issues with the new Memory Usage Tool in Visual Studio: 1. Memory caps on Phone devices: In particular for Phone, there are specific memory limits enforced on an application based on the size of the…
Adrian K
  • 9,880
  • 3
  • 33
  • 59
7
votes
3 answers

UWP: async read file into byte[]

I want to read a locally stored file into a byte array. How do I do that? This is my try: StorageFolder folder = await StorageFolder.GetFolderFromPathAsync(filePath); var file = await folder.GetFileAsync(filePath); var buffer = await…
testing
  • 19,681
  • 50
  • 236
  • 417
7
votes
2 answers

WP8.1 and WP10 differences

With Windows Phone 8.1, next line worked well but now when users are changing to Windows 10 phones, devices are failing. ProductLicense inAppLicense = CurrentApp.LicenseInformation.ProductLicenses["Keyfor"]; As mentioned worked with WP 8.1 nicely…
JJL
  • 71
  • 4
7
votes
5 answers

Hide status bar in UWP

I have used below code to hide status bar in UWP. When I run the app in development mode in my computer the status bar is not shown in windows phone. I deployed the app in Windows Store, after downloading the app, I see the status bar appears in my…
ARH
  • 1,566
  • 3
  • 25
  • 56
6
votes
3 answers

.appxupload UWP package for Store submission doesn't contain .appxsym file

For some reason when I've generated in VS2015 Update 2 RTM a new build of the UWP app, whose previous version is in the Store quite a while already, the newly generated .appxupload package doesn't contains application's debug/symbol data (the…
6
votes
3 answers

UWP: byte[] to file

I have a byte[] and I want to store it into a file. This is my code: using System.Runtime.InteropServices.WindowsRuntime; StorageFolder folder = await GetStorageFolderFromFilePath(filePath); StorageFile file = await…
testing
  • 19,681
  • 50
  • 236
  • 417
6
votes
1 answer

Interface where one of the implementations needs to be async

I have an interface, which delivers me a certain path. In one of my implementations I need to use async, but I haven't figured out how to get the result of an async method into a synchronous method. Here is the code sample: Interface: public…
testing
  • 19,681
  • 50
  • 236
  • 417
6
votes
5 answers

Is it possible to use a SQLite database in a shared folder in a PC?

I am developing an UWP application (Windows phone 10) and I have a SQLite database in a shared folder in a PC in my LAN. I would like to know if I can use this database in the windows phone app, like I do with my WPF application, that I can set the…
Álvaro García
  • 18,114
  • 30
  • 102
  • 193
6
votes
3 answers

Windows 10 UWP targeting windows 10 mobile only

Is it possible to target a uwp app just for Windows 10 mobile? I mean can we configure in the manifest just to work with phone and not tablet or desktop? Also, the users should not be able to search for the app on the store from a tablet, desktop…
golldy
  • 1,279
  • 1
  • 15
  • 31
6
votes
2 answers

Windows App Certification Kit hangs

I have developed windows 10 App and uploaded that to windows store. However, I wanted to apply Windows Certification App Kit. The testing hangs during these two stages; Direct3D trim after suspend In progress... UTF-8 file encoding In…
6
votes
1 answer

How do I set up dragging by touch in Windows Universal Apps on Windows 10 Phone?

I have successfully set my Grid up for dragging with a mouse with However, this is not draggable on a…
Seth Kitchen
  • 1,526
  • 19
  • 53
6
votes
2 answers

Cannot debug on Windows 10 Phone (build 10572)

I'm trying to debug a Universal Windows 10 app on my Windows 10 Phone, but it keeps giving me this error: 1>------ Deploy started: Project: PasswordsUniversal, Configuration: Debug ARM ------ 1>Error : DEP6100 : The following unexpected error…
6
votes
1 answer

Attach Image/ImageBrush from code behind

I'm trying to add an Image as the background of a UserControl. Depending on the value of a variable I need to change that background but whatever the path or Uri format I use, the background does not change. I've seen lots of questions here in…
Eva FP
  • 775
  • 9
  • 24
6
votes
2 answers

Splash screen status bar color on Windows 10 Mobile

I want to customize the color of the status bar that is shown during the splash screen. What used to work on Windows Phone 8.1 seems to be broken on Windows 10. I use a splash screen PNG and set the Splash Screen Background color in my package…
Olivier Payen
  • 15,198
  • 7
  • 41
  • 70
6
votes
1 answer

How to create a custom VirtualizingPanel on Windows Phone 8.1 / Windows 10?

I'm trying to do this in Windows 10 and Windows Phone 8.1 (app link): I have a custom class called FluidPanel that extends Panel and overrides methods MeasureOverride and ArrangeOverride. The goal is to create the Google Keep appearence. Ok, it's…
Bruno Lemos
  • 8,847
  • 5
  • 40
  • 51
1 2
3
56 57