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
1
vote
2 answers

Different Launcher Name and Title Name

A similar question has been posted before but no satisfying answers yet.. The question is simple. I am using a custom Title Bar in my application (in the form on an image having text). However, When I use a title for the Launcher (the text beneath…
1
vote
0 answers

Android manifest: how to specify that ToF sensor (Time of Flight) is required for the app?

I am working on an app that uses the ToF sensor, available only on a few devices. So I want my app to be available on Google Play only to compatible device (those that have a ToF sensor). How can I do that ? Thanks !
toto_tata
  • 14,526
  • 27
  • 108
  • 198
1
vote
1 answer

Enable DPI Awareness setting has no effect (VisualStudio 2017)

I want my program to be DPI aware but I don'T want to set the default awareness programmatically because this is not recommended according to the microsoft…
FelixH
  • 135
  • 1
  • 2
  • 14
1
vote
1 answer

Including external Jar when running jar file

I am writing an ant file that will compile and run my java files. The ant creates the AntLabRun.jar file. When I try to run the jar file, I get the Exception in thread "main" java.lang.NoClassDefFoundError. Here is rough look of the…
Gilroy
  • 11
  • 1
1
vote
0 answers

How to keep console open when running an executable Jar?

I'm trying to deploy a small console-based program I've been working on as an executable Jar file. I made sure the Manifest file specified the Main-Class, so it should run automatically. There's no GUI, it just uses the console. Good old Scanner and…
JCaredig
  • 11
  • 1
1
vote
0 answers

Difference between `include a b.txt` and `include a/b.txt` in `MANIFEST.in` for package distribution?

I've taken a look at How to include docs directory in python distribution which shows the following examples: include docs/* recursive-include docs * But then looking at Including files in source distributions with MANIFEST.in I see: include pat1…
Mario Ishac
  • 5,060
  • 3
  • 21
  • 52
1
vote
1 answer

What's the right syntax for controlling Inclusion and Exclusion of data directories in Setup.py?

Q: In creating a python distribution using setup.py and MANIFEST.IN, how can I define define the nested data directories that I do and don't want in the final installation directory (Complex example!) Background: My program has a set of data…
mcgregor94086
  • 1,467
  • 3
  • 11
  • 22
1
vote
0 answers

GetVersionEx with manifestation Windows 10 and integrated GPU

I have OpengL application and using GetVersionEx to get the OS with adding a compatibility manifest.
Dmitry
  • 23
  • 3
1
vote
0 answers

Where is the cached data with HTML5 manifest for iOS

In the post HTML5 offline webapps: a practical example we knew that there are 3 different storage of cached files. My question is: Where is the cached files with manifest in iOS app ? I used iPhone Explorer to find such files by searching all…
Forrest
  • 122,703
  • 20
  • 73
  • 107
1
vote
2 answers

Running .exe with a .manifest file causes a "...did not install correctly" dialog. Why?

I'm trying to get a VB app (my.exe) to run as Administrator on Windows 7. So I'm using a Manifest (below) to do that. But when I run it (and immediately exit the My.exe) I get the Program Compatibility Assistant warning: "This program might not have…
Clay Nichols
  • 11,848
  • 30
  • 109
  • 170
1
vote
2 answers

PWA Manifest Icons failing to fetch

I am wondering what the path and issue is for this error from Lighthouse Audit: Web app manifest does not meet the installability requirements Failures: Manifest icon failed to be fetched. I have all of my images icons from 72x72 to 512x512 so I am…
Michael Paccione
  • 2,467
  • 6
  • 39
  • 74
1
vote
3 answers

android deeplinking - the first path prefix is dynamic, but the second not

I have a url, e.g. https://www.mobilePhoneSystem.com/{user}/registerDate/{date}. So the {user} path-prefix is dynamic. I need to handle ONLY the deeplinks, that contains registerDate. I wrote in my manifest something like this
Hayk Mkrtchyan
  • 2,835
  • 3
  • 19
  • 61
1
vote
0 answers

How to set Permissions and Content Security Policy for Chrome extension

I'm trying to get my Chrome extension approved and want to understand how I should properly fill in the "permissions" and "csp" sections of the manifest.json. Those parts looks as follows: ... "permissions": [ "storage", …
1
vote
2 answers

What is a manifest file when not Java-related?

What is a manifest file used for when the term is used in discussions concerning Linux, Android, and C++? I can't seem to find a good, basic definition that isn't java-related.
Adam S
  • 8,945
  • 17
  • 67
  • 103
1
vote
1 answer

msbuild cannot copy manifest because it was not found

We have a c# framework (not .core) solution with several projects in it. It is build by TFS. Sometimes (not all the times) I got a build error: error MSB3030: Could not copy the…
Zoltan Hernyak
  • 989
  • 1
  • 14
  • 35
1 2 3
99
100