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

jar finding main class on my computer, but not finding on someone else's

I have my program's jar packaged with maven. I have the manifest file set to know where my main class is. It executes with no issues on my machine. However, when I gave the jar to a friend to beta test, they are getting the error that the main class…
ssteph
  • 89
  • 1
  • 9
1
vote
0 answers

How to specify the "file" element in the "Additional Manifest Dependencies" linker option of Visual Studio

I am trying to embed a manifest file into a win32 dll, to depend on a specific version of TestComp.dll, for this i am using manifest file and i am able to embed the manifest file into an assembly using the MT.exe and it works fine, so now i want to…
user2101801
  • 719
  • 2
  • 8
  • 20
1
vote
1 answer

I added to manifest, but android permission but it is missing

I added permissions to AndroidManifest.xml and I check it is upper than
KimRuhr
  • 37
  • 8
1
vote
1 answer

Is there a way to specify File Name= in UMMM (Unattended Make My Manifest) creation of Program.exe.manifest?

Is there a way to adjust the UMMM.ini file and / or the UMMM.bat file to specify in the the \Dependencies subdirectory when it creates the Program.exe.manifest? Re: vb6 "regfreecom" autocreate manifest for ocx file Re: VB6…
anderci
  • 31
  • 6
1
vote
0 answers

How to avoid "Let windows try to fix apps so they're not blurry" affecting my app?

My application works great, when the option "Display Settings => Advanced Scaling Settings => Let windows try to fix apps so they're not blurry" is disabled, but when it is enabled, the scaling of some elements in the UI is quite off. I want my…
Markus Mayr
  • 4,038
  • 1
  • 20
  • 42
1
vote
2 answers

actual size (1x1)px of icon does not match specified size (72x72)px | PWA Nuxtjs

I am trying to add PWA functionality to an existing Nuxt js website and i get this error in the console: Error while trying to use the following icon from the Manifest: http://localhost:3000/_nuxt/static/icons/icon-144x144.png (Download error or…
Computer Mind
  • 411
  • 2
  • 5
  • 12
1
vote
2 answers

I want to apt-get install sysstat command in kubernetes yaml file

Cluster information: Kubernetes version: 1.8 Cloud being used: (put bare-metal if not on a public cloud) AWS EKS Host OS: debian linux When I deploy pods,I want to my pod to install and start sysstat automatically this is my two yaml flies below but…
Bawoo
  • 11
  • 1
  • 3
1
vote
0 answers

infoPlist Property is not working with EXPO project for iTunes connect

I had submitted my app twice to apple store and it's being rejected due to privacy getting the user information like location I built my project with EXPO and after adding infoPlist property as a child to ios object as mentioned in EXPO…
Hatim Fayez
  • 181
  • 1
  • 2
  • 17
1
vote
0 answers

No manifest created in MediaPackage, working from the AWS console

Just getting started on AWS, beginning by using the AWS web interface to begin learning. Doing the training module creating a live feed using MediaLive and MediaPackage. In MediaPackage I've created a channel and then an endpoint (manifest name…
1
vote
2 answers

Google OAuth2 Invalid token format error on redirecting to PWA

I have an error when login with Google OAuth. No problem on desktop website or mobile browser usage with google login. But the user wants to login on mobile browser and PWA of the web site installed on device then mobile browser redirecting to PWA…
1
vote
0 answers

Android: Multiple LAUNCHERs in one manifest

How can I have 2 icons for 2 main activities? I have 2 main/launcher activities. each of those have its own icon. All is ok, but sometimes users say that after update - the icon get mixed. they get 2 times the same icon.
kfir
  • 635
  • 8
  • 27
1
vote
1 answer

Android deeplink - don't show intent chooser popup, force open app

I want to open my app from browser, when user opens any link that my app handles. So I'm using deeplinking. Here's my code in manifest file.
1
vote
1 answer

List zip entries using ANT

I would like to list the entries of a zip file (ear, war) using ANT. Within my ear, war, jar artifacts I keep the build number in META-INF/MANIFEST.MF file. I would like to create an ANT script to list all the artifacts and their respective build…
erezul
  • 527
  • 2
  • 8
  • 19
1
vote
0 answers

VSCode Extension Manifest - values with % symbol

I just started building my own VSCode extension and found some examples for the package.json manifest where values are surrounded by percentage % symbols like this: "description": "%config.alwaysSignOff%" I can‘t find any explanation of what this…
user12767256
1
vote
1 answer

android, how can I add keyboard permission to manifest?

I have finished my first application and published in android marketplace (https://market.android.com/details?id=Mobilesoft.asia.numbers&feature=search_result) My problem is, in upload page is written: This apk requests 1 features that will be used…
Hesam
  • 52,260
  • 74
  • 224
  • 365
1 2 3
99
100