manifest

Manifest Merging Failed: Android Studio

浪尽此生 提交于 2019-12-01 11:57:00
I am not sure what's the issue. I googled and though it was about matching the sdk versions. They are the same as follows: build.gradle android { compileSdkVersion 17 buildToolsVersion "19.0.1" defaultConfig { minSdkVersion 4 targetSdkVersion 17 } buildTypes { release { runProguard false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt' } } } dependencies { compile project(':slidingMenu') compile project(':slidingMenu') compile files('libs/GoogleAdMobAdsSdk-6.4.1.jar') compile files('libs/Parse-1.4.0.jar') } Manifest file: <manifest xmlns:android="http:/

PWA Openning in Bowser mode while being in Standalone mode

泄露秘密 提交于 2019-12-01 11:24:31
We built a Progressive Web App from an existing angular 4 project. everything worked well till we added the manifest file. When you access the App from the browser it prompt you to add it to the home screen. But after add it, when you clicked on the Icon from the home screen it open in the Browser mode intead of the Standalone mode . I don't know why it is behaving so and what can be the problem. Bellow is my manifest.json file please help me. { "name": "Mobile Application", "short_name": "Mobile App", "icons": [ { "src": "assets/icons/android-icon-36x36.png", "sizes": "36x36", "type": "image

How to create isolated/reg-free COM between Visual Basic DLLs and a C++ DLL?

ぃ、小莉子 提交于 2019-12-01 11:14:56
I have to use a VB (COM) DLL in a C++ DLL. I figured out how to access the VB (COM) DLL from the C++ DLL and it works. Now I've got the problem that I have to use isolated COM/reg-free COM because I can't register the DLL on every PC it has to be used on. I figured out to use manifest-files to achieve this but I can't get it to work and I don't know what is wrong. I have a VB DLL called AccConnVB.dll with the following AccConnVB.manifest file: <?xml version="1.0" encoding="UTF-8" standalone="yes"?> <assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0"> <assemblyIdentity type

How to publish a Java Web Start jnlp application without security warnings?

為{幸葍}努か 提交于 2019-12-01 11:06:42
I have a Java application that is launched from a jnlp file off of a website. I'm trying to get it to run without flashing up a bunch of security warnings before it runs. The program is broken up into about 10 different jar files, 30 or so jar libraries, and a couple native libraries also contained in jar files. I've signed all of the jar files with an official code signing cert (from Verisign), included the jnlp file inside of the jar file that holds the main class, and added permissions and codebase attributes to the main 10 jars that I'm compiling. When I launch the program I get the

Running Windows commandline from Java as an Administrator - Creating a .manifest file

本小妞迷上赌 提交于 2019-12-01 11:04:34
I am running Windows 7 Pro and working on a Java application in Eclipse. I need Eclipse to send user-specified commands (such as 'chkdsk C:') to the command prompt and then output to the console in Eclipse whatever the command prompt would have printed. I have the sending commands working and the receiving text back. However, when I to run chkdsk I need to have admin privileges for the command session. I see from the thread here: Java: run as administrator that one way to do this is through a .manifest file. However, I am having trouble understanding how to create a manifest file for Java:

can't find app on market

此生再无相见时 提交于 2019-12-01 10:34:56
问题 I installed manually the apk of my app on Asus Transform and it works fine, I deployed it on the market but i can't find it (I can find it with my Samsung Galaxy Ace), should I set something on my manifest? Thanks EDIT manifest.xml <activity android:name="Splash" android:label="@string/app_name" android:screenOrientation="portrait" > <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity>

Manifest Merging Failed: Android Studio

自作多情 提交于 2019-12-01 10:23:46
问题 I am not sure what's the issue. I googled and though it was about matching the sdk versions. They are the same as follows: build.gradle android { compileSdkVersion 17 buildToolsVersion "19.0.1" defaultConfig { minSdkVersion 4 targetSdkVersion 17 } buildTypes { release { runProguard false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt' } } } dependencies { compile project(':slidingMenu') compile project(':slidingMenu') compile files('libs/GoogleAdMobAdsSdk-6

PWA Openning in Bowser mode while being in Standalone mode

三世轮回 提交于 2019-12-01 09:43:47
问题 We built a Progressive Web App from an existing angular 4 project. everything worked well till we added the manifest file. When you access the App from the browser it prompt you to add it to the home screen. But after add it, when you clicked on the Icon from the home screen it open in the Browser mode intead of the Standalone mode . I don't know why it is behaving so and what can be the problem. Bellow is my manifest.json file please help me. { "name": "Mobile Application", "short_name":

How can I specify dependencies in the manifest file and then to include it into my .jar file?

这一生的挚爱 提交于 2019-12-01 09:36:48
I generated .class files by the following command: javac -cp \directoryName\external.jar myPackageDirectory\First.java myPackageDirectory\Second.java I needed to use -cp during compilation and name of .jar file of an "external" library (external.jar) to be able to use this library from my code. Using my .class files I have generated my .jar file in the following way: jar cfm app.jar manifest.txt myPackageDirectory\*.class manifest.txt contains just one line: Main-Class: myPackageName.First My problem is that I am not sure that I will be able to run my .jar file on other computers. I think so

Add application manifest to a win32 application in eclipse

懵懂的女人 提交于 2019-12-01 08:49:35
问题 How do I add an application manifest to a Win32 application being developed in Eclipse ? I want to add a manifest in order to use version 6 of Comctl32.dll which, according to this article is necessary to create form controls with a Windows XP visual style. I'm using MingW32 toolchain with eclipse. 回答1: To answer my own question: Add CREATEPROCESS_MANIFEST_RESOURCE_ID RT_MANIFEST "YourApp.exe.manifest" to the .rc file before you compile it with MinGW resource compiler, windres 来源: https:/