manifest

Conventions for additional content of the manifest.mf file?

ぐ巨炮叔叔 提交于 2019-12-22 06:59:08
问题 Are there any conventions for the MANIFEST.MF file in a Java JAR beyond the JAR specification? Interesting information I might want to include are: Build date and other build information, SVN Revision, perhaps a description. I haven't found suggestions how to name the corresponding keys. Are there any de facto standards or at least common key names that are used in manifests for things that are not covered by the spec? 回答1: The JAR Manifest: Overview mentions that "Attributes which are not

Chrome extension: Could not load javascript file

微笑、不失礼 提交于 2019-12-22 05:39:36
问题 I have posted another question regarding my Chrome extension here. But I have one more question about extensions themselves. I only need a content script for the modification of the Tumblr-Dashboard, no background page or something else, right? Here is the manifest.json file: { "name": "Tumblr - Tiled Dashboard", "version": "0.0.54", "manifest_version": 2, "description": "This extension modifies the look of your Tumblr dashboard.", "icons": { "16": "images/icon_16.png", "48": "images/icon_48

Launch Activity From URL

做~自己de王妃 提交于 2019-12-22 05:17:20
问题 I am trying to have my application launch when the user browses to a certain url. I have found a few examples and they all have the same things in the manifests but it's not working for me. I have put the intent-filter under an Activity as well as a Receiver. Here is my manifest snippet: <intent-filter> <action android:name="android.intent.action.VIEW"></action> <category android:name="android.intent.category.DEFAULT"></category> <category android:name="android.intent.category.BROWSABLE"><

Permission Denial: broadcasting Intent android.provider.Telephony.SMS_RECEIVED

匆匆过客 提交于 2019-12-22 01:06:15
问题 Hello i am new to Android, I'm getting this problem even after having the required SMS permissions inside my manifest file. I tried a couple of ways but it doesn't work anymore got any idea? AndroidManifest.xml <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.example.phonefinder2" android:versionCode="1" android:versionName="1.0"> <uses-sdk android:minSdkVersion="8" /> <uses-permission android:name="android.permission

How can I embed an configuration-specific manifest file in my c# app?

限于喜欢 提交于 2019-12-21 20:58:02
问题 I'd like to embed a platform-specific manifest file in my C# app. Is there an easy way to do this in Visual Studio 2008 without using some external script called after the build is finished? In creating a C# app, the configuration and platform dropdowns are disabled for the Application tab, preventing me from selecting an architecture or configuration specific manifest to embed to that app. I'm forced to use one manifest for the whole application. I thought of using a Post Build event to call

Simulating SideBySide for Out of Process ActiveX

风流意气都作罢 提交于 2019-12-21 20:42:23
问题 We are adapting our client side relatively complicated application (ActiveX / .net / Delphi / C++ / COM ) to use SxS to achieve non admin deployment and isolation from older versions of our product. We were able to achieve this goal for almost all our in proc components such as our .net ui, Delphi ui, and the COM servers we use in proc by composing a manifest file which described all the libraries used by our process, with no registration on the client of any of the components (almost). And

Get Application information from an APK using PHP script

余生颓废 提交于 2019-12-21 14:03:37
问题 How can I get the versionCode , versionName , application icon and application label from an APK with PHP 回答1: I'm not that familiar with php so I can't provide any code, but the idea is: unzip the APK file (since it's "nomal" zip format) open the AndroidManifest.xml and parse the <manifest> tag for android:versionCode and android:versionName 回答2: If I'm not wrong, APKs are simply zip files. And android packages will have some sort of XML file that will mention the version information. In PHP

How to get version information of an included library?

半腔热情 提交于 2019-12-21 13:09:34
问题 I have an eclipse project with two included library projects. These projects have their own manifest files with version information. Now I want to read the version number from these library projects within my main project. The information can't be read by calling the PackageManager: //Get the version name from the included library project String libVersion = getPackageManager().getPackageInfo("com.google.zxing.client.android", 0).versionName; Because the library is not an installed

Java 7u51/7u55 Manifest Variables with Asterisk

冷暖自知 提交于 2019-12-21 04:13:36
问题 I'm deploying an applet with the next variables in the manifest: Manifest-Version: 2.0 Ant-Version: Apache Ant 1.8.2 Trusted-Library: true Permissions: all-permissions Application-Name: My Applet Codebase: * Application-Library-Allowable-Codebase: * Caller-Allowable-Codebase: * I was wondering if by using the asterisk in the previous values, my applet (once deployed) can be blacklisted by Java or by Oracle in a future version or now with the 7u51 (or perhaps the certificate can be blacklisted

What is the difference between “asInvoker” and “highestAvailable” execution levels?

北城余情 提交于 2019-12-21 03:08:33
问题 I've been wondering what the difference between embedding <requestedExecutionLevel level="asInvoker" uiAccess="false" /> and <requestedExecutionLevel level="highestAvailable" uiAccess="false" /> in your application's manifest is. 回答1: This is described on MSDN: Basically, "asInvoker" will use the user's default security settings. It's described as "The application runs with the same access token as the parent process.", which means the same security token is used as the calling process, which