Questions tagged [appxmanifest]
122 questions
0
votes
1 answer
Determine if C# application is running as a UWP app during run time if appx is made from C# application using makeappx tool
I have created appx for C# Desktop application using MakeAppx tool.
During runtime, when appx is launched, I want to check this is running as appx and not as console application.
Is there a simple runtime check one can do in C# to determine if you…

Ankush Butole
- 151
- 13
0
votes
2 answers
How to auto-increment the version in AppxManifest.xml when appx is created using MakeAppx tool?
I created appx package using makeappx.exe. Also I did the changes on Jenkins so that on each build I could have appx as output. Now on each build I am getting appx with same version number as this version is set in AppxManifest.xml I want to…

Ankush Butole
- 151
- 13
0
votes
1 answer
Not able to set Publisher in appxmanifest file for windows app
Am generating a windows app using Visual Studio. Have set the Identity name ,publisher name and publisher ID in package.windows.appxmanfiest , package.phone.appxmanifest and package.phone.appxmanifest files.
However when i build the solution , i can…

user1099693
- 63
- 5
0
votes
1 answer
Update app with new certificate in Microsoft Private UWP Store
I created an UWP app in our Microsoft Private Company Store, but with a wrong certificate.
Now I would like to upload a new Package to this app with the correct Certificate.
I created a new appxupload with a link to the correct certificate in the…

Erwin
- 3,060
- 26
- 24
0
votes
0 answers
AppUriHandler cannot deploy on Windows Phone 10 (UWP)
I have a UWP Store App and try to use web-to-app linking using the AppUriHandler in the Package.appxmanifest.
It seems to work well on the desktop but I am getting a deployment error on Windows Phone 10:
DEP0001 : Unexpected Error: -2146958844
The…

James
- 1
- 1
0
votes
1 answer
How to add rfcomm and genericAttributeProfile device capabilities to Package.appxmanifest in Windows 8.1.
I need to support multiple devices including both serial and BLE. When i add the following code to Package.appxmanifest file, i get an error
Unable to activate Windows Store app 'blah.blah_blah!App'. The activation request failed with error…

Umer Jamal
- 3
- 1
0
votes
2 answers
UWP Manifest Languages don't show
I'm trying to localize my UWP app, and everything runs well while debugging in my pc, but when I create the app package, so I can install it on my windows tablet it works differently.
Here is the problem. I have in my manifest 3 different languages…

Gustavo Z. H.
- 36
- 3
0
votes
1 answer
How to fix appxmanifest.xml for xbox one?
I am currently getting this error for a game I'm working on for the xbox one. It runs perfectly fine thought unity5 and when I exported it as a .exe game for pc but I can't get it to run locally or remotely. I have it set to debug x64 since that's…

David Osborn
- 1
- 1
- 4
0
votes
1 answer
How to associate a app.manifest with a Windows Store 8.1 Project
My Visual studio project only has only a Package.appxmanifest but I need to add to the app.manifest.
It is straight forward to add the app manifest and this setting but how do you tell the app to use it?
In older projects you would go into project…

Andrew Thompson
- 139
- 8
0
votes
1 answer
Package Acceptance Validation Errors on Visual Assets
I'm getting the following error when I upload a windows app package the developer console:
Package acceptance validation error: The following image(s) specified in the appxManifest.xml of xxxx_x86.appx were not found: Assets\Branding\StoreLogo.png,…

Darthg8r
- 12,377
- 15
- 63
- 100
0
votes
1 answer
UWP optional capability
My UWP application might work with an external HID device. This device might be plugged or unplugged and application should react on device availability and enable\disable part of a functionality.
Is it possible to add optional capability to app…

Valentine
- 506
- 6
- 23
0
votes
1 answer
Access Denied appxmanifest.xml
I need to programmatically add ContentURIs to package.appxmanifest file for Windows Phone 10 development. I am able to read the appxmanifest.xml file into XDocument, update it but unable to write it back to appxmanifest.xml, as it keeps throwing…

daisy
- 277
- 1
- 5
- 16
0
votes
1 answer
Error: Windows 10 Universal App Appxmanifest "Capability"
I'm using VS 2015 RC (14.0.22823.1 D14REL) to develop universal app, and I needed to use HTTP client PostAsync to send a message to Azure EventHub.
This gives me a permission denied for not declaring the capability.
I've tried using 'Capability…

Dan
- 9
- 1
0
votes
1 answer
Windows Phone 8.1 Xmal With Azure Mobile Service Deployment Error: [MissingManifestResource_NoPRIresources]
I am using Azure Mobile Service Offline with Windows Phone 8.1 (XAML).
When I am using app with debug mode it is working fine.
But, If i create package with Release mode. It Throw an error.
and that is…

Sagar Kulkarni
- 636
- 9
- 24
0
votes
1 answer
How to declare file type associations in package.appxmanifest file to support all types of files in windows 8 metro app?
I want to declare file type associations in package.appxmanifest file to support all types of files. I tried with ".*", but this dint work.
I want to access KnownFolders.Documents Library from the app. So I have manually added the capability in my…

user3773678
- 45
- 2