Adam S
Adam S

Reputation: 9235

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.

Upvotes: 1

Views: 134

Answers (2)

Chris Eberle
Chris Eberle

Reputation: 48785

I don't think there's an answer to that, because it's specification-dependent jargon. However in general I'd wager that if you hear that expression it's indicating a text file that accompanies and holds metadata for a program or library (I totally ripped the wording from Wikipedia, btw).

Upvotes: 3

Alok Save
Alok Save

Reputation: 206546

Every Android application must have an AndroidManifest.xml file (with precisely that name) in its root directory. The manifest presents essential information about the application to the Android system, information the system must have before it can run any of the application's code.

Read further here.

NOTE: I am not sure I understand your Q correctly, because the Q title and the content in the Q are not the same. The above info is about Manifest file in Android

Upvotes: 1

Related Questions