How do I get rid of requirements?

Right now my few apps that are listed on the Windows Store list these requirements:

App requires

  • music library
  • media playback
  • data services
  • movement and directional sensor
  • web browser component

My apps definitely dont require any of those.  How can I build so those wont show?

Scott

 

You can set your app’s capabilities and requirements via its “WMAppManifest.xml” file.

   http://msdn.microsoft.com/en-us/library/windows/apps/jj247542(v=vs.105).aspx

In Visual Studio, go to the “Solution Explorer” panel, expand your project’s “Properties” tree, and double click the “WMAppManifest.xml” file.  That will display a UI in Visual Studio so that you can edit these settings according to Microsoft’s documentation that I linked up above.  In particular, you’ll want to uncheck these unwanted settings under the “Capabilities” tab.

Thank you!  Found it about the same time you responded.

You can set your app’s capabilities and requirements via its “WMAppManifest.xml” file.

   http://msdn.microsoft.com/en-us/library/windows/apps/jj247542(v=vs.105).aspx

In Visual Studio, go to the “Solution Explorer” panel, expand your project’s “Properties” tree, and double click the “WMAppManifest.xml” file.  That will display a UI in Visual Studio so that you can edit these settings according to Microsoft’s documentation that I linked up above.  In particular, you’ll want to uncheck these unwanted settings under the “Capabilities” tab.

Thank you!  Found it about the same time you responded.