Questions tagged [manifest]

A manifest is a file containing metadata about an application, data file or assembly. Generally an ambiguous tag, try and use a more specific one.

On the Java platform, a Manifest file is a specific file contained within a JAR archive. It is used to define extension and package related data. It is a metadata file that contains name-value pairs organized in different sections.

On the Microsoft .NET platform, manifests are XML files that accompany and describe side-by-side assemblies or isolated applications. Manifests uniquely identify the assembly through the assembly's assemblyIdentity element. They contain information used for binding and activation, such as COM classes, interfaces, and type libraries, that has traditionally been stored in the registry. Manifests also specify the files that make up the assembly.

Use to tag questions about the AndroidManifest.xml file which is used to describe the contents of Android apps.

3843 questions
28
votes
3 answers

UAC need for console application

I have a console application that require to use some code that need administrator level. I have read that I need to add a Manifest file myprogram.exe.manifest that look like that :
Patrick Desjardins
  • 136,852
  • 88
  • 292
  • 341
28
votes
4 answers

How to run Java .jar without MANIFEST.MF?

Is it possible to run a Java app which doesn't contain MANIFEST.MF file? Of course, there's static main method,just lacks manifest file. And the app is depending on several external .jar files. If is this possible, how to do that?
eonil
  • 83,476
  • 81
  • 317
  • 516
27
votes
6 answers

Difference Between uses-permission-sdk-23 and uses-permission?

I just come to know newer tag in android manifest file called "uses-permission-sdk-23" Can anybody please provide…
Bhavesh Patadiya
  • 25,740
  • 15
  • 81
  • 107
27
votes
12 answers

Android Studio - Action Bar remove

I'm trying to remove/disable the ActionBar. I tried to put in the Manifest: and it doesn't work. It doesn't remove the ActionBar. Please help me. Thanks.
iYonatan
  • 916
  • 3
  • 10
  • 26
26
votes
5 answers

Remove extra unwanted permissions from manifest android

I have android app, I want to check that every permissions mentioned in Manifest is required or not? Basically I want remove unwanted permissions. what should I do? Thanks in advance
Mitul Nakum
  • 5,514
  • 5
  • 35
  • 41
26
votes
1 answer

How can I embed an application manifest into an application using VS2008?

I've read here and here for ways to embed my application's manifest files inside the PE but these steps do not seem to work for VC#:VS2008 - VS2008 doesn't even come with mt.exe (as far as i know) How might I go about doing this?
Dacto
  • 2,901
  • 9
  • 45
  • 54
26
votes
3 answers

C# - do I need manifest files?

I am curious whether I need two manifest files that are created when I publish my application. It works when I delete them. In the case they are needed, I have tried to embed (Project>Application>Embed manifest with default setting) them but they…
Mirek
  • 591
  • 2
  • 6
  • 6
25
votes
3 answers

Chrome extension: load different content scripts

I want to load a different content script depending on the page and tab that is currently selected. Right now, I have three content scripts. I want to use two of them for one page and the third one for another page. Belonging to page…
25
votes
3 answers

How can I get root permissions through the Android SDK?

I'm learning Android programming, and I want to make an application which has to run as root. The logical thing would be to add a root permission in the Android Manifest. I saw this link in the documentation, and especially noted the FACTORY_TEST…
Rob
  • 2,766
  • 5
  • 32
  • 39
25
votes
9 answers

simply replacing icons for progressive web app leads to error in manifest

I had generated a manifest file with icons, later i decided to just change the icons folder with different icons(by copying & paste and overriding) when i did that I get the following error in chrome devtools as i click add to home screen in the…
jasan
  • 11,475
  • 22
  • 57
  • 97
25
votes
2 answers

Chrome web app manifest: differences between display types

When creating a web app manifest for Chrome, you can specify your display as fullscreen, standalone, minimal-ui or browser What are the differences between fullscreen and standalone and when should I use which? They seem very similar to me.
Jan Swart
  • 6,761
  • 10
  • 36
  • 45
24
votes
3 answers

How to view css stylesheet injected by a Google Chrome extension using dev tools?

I'm injecting a css file from my chrome extension using the manifest.json (full source): "content_scripts": [ { "matches": [ "http://*/*" ], "css":["src/inject/gfi_extension.css"], "js": [/*...*/] } ] In…
24
votes
3 answers

what android permission causes "device & app history"

I am trying to install an app from Google Play store and I see Device & app history permission. does anyone know what android permission in manifest causes "Device & app history" permission? Device & app history Allows the app to view one or more…
Nizzy
  • 1,879
  • 3
  • 21
  • 33
24
votes
3 answers

What do I have to add to the manifest to debug an Android application on an actual Device?

What kind of permission/Flag do I have to add to the manifest to debug my application on an actual Android device?
Janusz
  • 187,060
  • 113
  • 301
  • 369
24
votes
2 answers

WPF application manifest file

I have a WPF application that I want to make it able to start always as an Adminstrator. I've been reading a lot about it and it seems that I have to create my own manifest file and pass it to the Application properties so that on runtime it starts…
mathinvalidnik
  • 1,566
  • 10
  • 35
  • 57