windows-store

Visual Studio crashes when trying to associate Cordova app with store

£可爱£侵袭症+ 提交于 2020-01-01 17:36:07
问题 I'm on the latest version of Visual Studio 2015 Community (14.0.24720.00 Update 1) on Windows 10. I'm currently developing a Cordova App for Windows 10, iOS and Android using the Visual Studio Tools. When I right click on the Project, then go Store > Associate App with the Store, I can successfully log in, see my existing apps and select the one I want, but when I try to actually associate that app with my VS project, VS just crashes. I've already tried repairing Visual Studio through Add or

Desktop App Converter -PackageName E_MANIFEST_USE_DEFAULT_VALUE_FAILED

混江龙づ霸主 提交于 2019-12-31 06:51:15
问题 I am trying to convert my app to an appx using Desktop App Converter. I am trying to use my Package/Identity/Name from the Microsoft store dashboard in the form of -PackageName "1234Myapp.Andthistoo". Desktop App Converter will not take it.It keeps coming back with a write error. From my searches I have been under the impression that the -PackageName category can not start with a number and it can not contain a period which my Package/Identity/Name contains both. It fails with this message:

Why does Ionic/Cordova build for Windows UWP add Content URI to appxmanifest?

回眸只為那壹抹淺笑 提交于 2019-12-25 01:56:08
问题 I have an Ionic(3) Cordova application, where I want to include a Windows UWP version. On iOS and Android I have no problems, but UWP I just cannot get my ajax to work and be store compliant. My issue is with my ajax calls being blocked on corporate networks as outlined here So, the issue was I needed to add privateNetworkClientServer , which when testing locally, fixed the blocking issue. Also, as explained in the link, I have attempted to add the "local mode". The store now rejects it with

Error when trying to view designer in windows store app c#

冷暖自知 提交于 2019-12-24 19:03:03
问题 I am getting the below error messages when I try and view any xaml design page in my project, can anyone tell me what it means? System.Exception Package failed updates, dependency or conflict validation. Windows cannot install package App.a9a122e61.a5503.a4c46.a9cbd.ad0f269743658 because this package depends on another package that could not be found. This package requires minimum version 0.0.0.0 of framework Microsoft.VCLibs.110.00.Debug published by any publisher to install. Provide the

Upload File with .NET for Windows Store Apps

穿精又带淫゛_ 提交于 2019-12-24 15:40:03
问题 Now that I have come to the realization that I can not use the normal .NET to write my Windows Store apps, I am trying to wade through the mess that is .NET for Windows Store apps. My latest discovery is that the System.Net.WebClient class is missing, and I needed to use it to upload a file. Had this class been there, I would have done something along the lines of: webClient.UploadFile("http://my.website/upload.php?a=" + someParam, "POST", filepath); Unfortunately, I can't do this in .NET for

How can I get Visual Studio to connect to the Windows Store?

允我心安 提交于 2019-12-24 05:05:35
问题 I'm trying to create app packages, in Visual Studio 2015, to upload to the Windows Store, but every attempt to connect to the Store results in the error: An unexpected network error has occurred. The app list cannot be refreshed. Please retry by pressing the Refresh button. This operation seems idempotent: pressing "Refresh" lands me back in the same state. I'll give a lot of detail about config and things I've tried below, but at this stage, I'm just after any method to get the app uploaded

Windows 8 Store App, how do I test in-app purchase?

﹥>﹥吖頭↗ 提交于 2019-12-23 18:24:32
问题 My app is created with Javascript. I need it to support in-app purchase for feature unlocking. From the documentation, it looks really simple. However, when I tries to implement it. I noticed that after returning S_OK from CurrentAppSimulator.requestProductPurchaseAsync , CurrentAppSimulator.licenseInformation.productLicenses.lookup(main.licenseName).isActive won't be changed to true. Then I discovered this answer CurrentAppSimulator.RequestProductPurchaseAsync purchasing simulation ,

Allowing suspension of a windows store app when audio is paused

久未见 提交于 2019-12-23 02:42:09
问题 One of the requirements for windows store apps is that they support suspending. My app is marked as a background audio task, so it doesn't suspend when left alone, but it is supposed to suspend when the audio is paused. I can't find out how to "tell Windows" when it can or can't suspend. How do I have my background audio application pass the package validation? 回答1: To enable background audio you must register handlers for the Media Control button events. These are in the Windows.Media

Handling Orientation in Windows 8.1 Store app

风流意气都作罢 提交于 2019-12-21 21:37:21
问题 I am making a Win Store App, and facing the issue to handle orientation. There is a grid, I want to modify the design of it when the orientation is changed. The stack Panels in both the sides (in Landscape View) should goto Top and Bottom in Portrait View. Currently I have created two grids with all the controls and adjust them according to the orientation, and switching the visibility property, using VisualStateManager. But I want to achieve this with a single grid, any suggestion will be a

Can a HTML/JavaScript Windows Store app run in a resizable window?

随声附和 提交于 2019-12-21 19:29:11
问题 I am about to begin developing an application on Windows 8.1. To leverage my existing skills and experience I would prefer to use HTML rather than XAML for the front end. Instead of running the application in full screen, I'd like to have it in an old-school WPF/WinForms style window which can be resized, maximized etc. Is this possible? If so, how? 回答1: This is not possible in Windows Store Apps. The closest thing you'd get is Snapped Views, which is sufficient in most cases, but will not