manifest

OSGI Bundle-NativeCode give error “No match found for native code”

故事扮演 提交于 2019-12-08 08:14:21
问题 I'm developing an OSGI bundle which uses the native library librxtxSerial . The first time, I had to deploy this bundle on a raspberry, so I've did something like that: I put the native library under: lib/librxtxSerial.so (NB: INSIDE the java project). Then, in the MANIFEST I've wrote: Bundle-NativeCode: lib/librxtxSerial.so Everything works fine!!! Now, the problem is that I've to deploy the same bundle on other embedded device which uses a different processor architecture (x86 instead ARM).

WIX custom installer admin privilege

痴心易碎 提交于 2019-12-08 06:45:20
问题 I have developed a WIX custom installer using C# WPF. I need to delete a file from "c:\Program Files" using c#. It shows error unauthorised. If i manually run with "run as administrator" it works. I tried adding manifest file and necessary changes. But it didn't work. I tried copying the same manifest file to a console application and it works. 回答1: You can do this by creating a C# custom action project and referring it in the WIX project. https://blogs.msdn.microsoft.com/jschaffe/2012/10/23

Possible to do runtime optional toggling of **runtime themes** by adding an application manifest at runtime? [duplicate]

∥☆過路亽.° 提交于 2019-12-08 06:21:00
问题 This question already has answers here : Closed 7 years ago . Possible Duplicate: How to switch an Application between Themed and not Themed at run-time? I create a GUI App with runtime themes option set to not enabled and need the option to manually enable an embedded Manifest during App initialization. Question: Does the VCL allow an extension point to implement that? Let me explain: The custom Manifest is embedded in the binary as a string constant. Runtime themes is enabled using command

Possible to do runtime optional toggling of **runtime themes** by adding an application manifest at runtime? [duplicate]

陌路散爱 提交于 2019-12-08 05:41:28
This question already has answers here : Closed 7 years ago . Possible Duplicate: How to switch an Application between Themed and not Themed at run-time? I create a GUI App with runtime themes option set to not enabled and need the option to manually enable an embedded Manifest during App initialization. Question: Does the VCL allow an extension point to implement that? Let me explain: The custom Manifest is embedded in the binary as a string constant. Runtime themes is enabled using command line parameter switch, e.g.: MyApp.exe -themeOn I have delved into Forms.TApplication in hope to find a

How do jar manifest classpath and -classpath command line option combine

南楼画角 提交于 2019-12-08 04:44:29
问题 If I have an executable jar X.jar, with a classpath defined in a manifest, and I want to include other jars on the classpath than these, will java -classpath a.jar;b.jar;c.jar -jar X.jar COMBINE these classpaths or OVERRIDE the manifest classpath in X.jar with the classpath specified on the command line. (and if they will be combined, in what order will they be combined)? 回答1: They don't combine. If you specify 'java -jar', the -classpath option is ignored, and the effective CLASSPATH comes

How to force a VB6 program to use a dll in a specified folder? [duplicate]

こ雲淡風輕ζ 提交于 2019-12-08 03:15:03
问题 This question already has answers here : Closed 7 years ago . Possible Duplicate: How can you force VB6 to use the DLLs and OCXs from the app directory? I have a small application and it references a DLL named chkConn.dll . For example, I have two different versions of the dll in two different locations. The other one is C:\chkConn.dll and the other is D:\chkConn.dll . I want my application to use C:\chkConn.dll even if I register D:\chkConn.dll in my system. I read about creating manifests

How do you add supportedOS to a Windows click once application manifest?

穿精又带淫゛_ 提交于 2019-12-07 23:15:46
问题 I'm trying to add a supportedOS tag to a click once application manifest. The usual way of doing this for a regular application is to add a app.manifest file to the project containing the supportedOS tag like what you can see below. I removed everything already included in the auto generated click once manifest. Usually a click once application don't need a app.manifest since one is generated for you automatically during the publish step. <?xml version="1.0" encoding="utf-8"?> <assembly

My application is not listed for tablets

本小妞迷上赌 提交于 2019-12-07 16:45:58
问题 I have uploaded to play.google.com a new application: https://play.google.com/store/apps/details?id=development.nk.anguide The problem is that i can not install this application in a tablet. At optimization tips there is the following message: "Your APK needs to meet the following criteria: Any required hardware features are normally available on tablets." This is my manifest file: <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android"

Correct mt.exe syntax to resolve pyodbc import problems

纵饮孤独 提交于 2019-12-07 16:27:02
问题 I'm deploying a Python app on Windows for the first time (Apache & mod_wsgi/Flask/Sqlalchemy). I'd like to use pyodbc to get Sqlalchemy talking to mssql. I was able to install a binary build of pyodbc with no problem, and it works when I use it from the command line. However, mod_wsgi is logging import errors when it hits import pyodbc This thread on the pyodbc issue tracker describes my issue exactly, and seems to implicate Windows manifests. However, I can't figure out how to use mt.exe to

Changing Theme.Holo on Android Manifest.xml file doesn't run on Android

喜欢而已 提交于 2019-12-07 15:17:32
I am very new to android app development, and have recently hit a wall on the Styling the Action Bar page . Every time I change the theme to android:theme="@android:style/Theme.Holo.Light" just doesn't allow the program to run on the android, with a message saying "Unfortunately, Program has stopped." every time I try to run it. Weird thing is that it saves perfectly fine on Eclipse with no errors. Here's my manifest file: <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.example.myfirstappv2" android:versionCode="1"