My app has been upgraded along the way from .net 1.1 to 3.5. On win 7 64 bit environment I have o manually remove the app.exe.manifest file as otherwise it crashes when it launches.
I use a visual studio deploy & setup project to install. In the exe's application settings itself i've tried all the options in the dropdown relating to wha...
Hi,
I got a code for connecting the web page but it shows always
"Connection failed; Host is
unresolved: www.streetcar.org:80"
The code is as follows.
package myapp.httpdwnd;
import android.app.Activity;
import java.io.InputStream;
import android.os.Bundle;
import android.widget.LinearLayout;
import android.widget.TextV...
Due to a design issue outside of my control, the MANIFEST.MF file populated by the Maven Archiver plugin (inside of Maven jar plugin) is overwritten.
Can I:
move the file further down into the jar (i.e. from /META-INF to /src/home or something)
Populate a different file with the contents that would normally go into MANIFEST.mf (i.e. ...
I have a couple of isolated applications that I am writing that all rely on dlls that are also written by myself and team. Things were fine when we only had a few dlls but not the build output directory is getting rather cluttered and hard to navigate. I would ultimately like to have the output build directory contain the following str...
In the following manifest, is it necessary to change the version attribute of the assemblyIdentity element if the assembly version is specified in the project (or, in my case, set as part of a MSBuild task)?
According to this Microsoft Connect page, it looks like the project's version number overrides the manifest's version number. Ple...
I'm using the minijar-maven-plugin to reduce the size of my jar-with-dependencies jar but I need to specify a mainClass like I can do easily with the maven assembly plugin. How can i specify the mainClass in the manifest while still using the minijar plugin?
My minijar configuration is the default:
<plugin>
<artifactId>mini...
Is there a way to read META-INF\MANIFEST.MF file of the currently running application using Android API?
I want to read SHA1 for classes.dex file and use it as an encrpytion key to one of my assets.
I cannot use the signature for .apk file because everytime I create a new apk I need to re-encrpyte my asset and put in to apk file which...
Hi All
I ask again this question and add more info, I simply couldn't find a way to add comment to the guy that answered me (iandisme)
I am quite new to Android and Java I am looking for example of how to use class:
SingleLaunchActivityTestCase
Till now I am using class InstrumentationTestCase but the problem is that for each launche...
I'm new to Android development. I'm trying to get a simple HelloWorld app going on my (rooted) phone - and the app is trying to enable Bluetooth.
I've set the Bluetooth permissions in my manifest is as follows, but I'm getting a Permission Denial exception when I try to run the application on my phone via Eclipse:
<?xml version="1....
if you compile a program in D2010 a manifest .res file is automatically generated. is it included in your program by default? or you have to include it yourself?if yes what level of privilage is given to you? my program modifies a registery key would it be able to do so with out any modifications to .res file?if no what modifications i n...
I have a free android app that I want to now distribute as free (with ads) and paid (without ads), so the only difference would be in a few of the layout files, where I just remove the ads in the paid version.
I tried moving all of my code from my existing free app to a new project which I set up as a library project, and I'm referencin...
Is there a difference or is it as simple as #define WC_BUTTON "BUTTON"? Also, if I use InitCommonControlsEx in place of InitCommonControls, do I still need to include a manifest?
...
Hello all,
i'm looking for a description of the manifest embedded in PE files. I know it's an XML file, what i'm looking for is a description of its structure and/or fields.
...
I have a service which both downloads a file and saves it, and it seems I can only specify one permission.
<service android:enabled="true"
android:name=".DownloadService" android:permission="android.permission.INTERNET">
</service>
or
<service android:enabled="true"
android:name=".DownloadService" ...
What is the difference between application manifest and assembly manifest? Where is each one used? Which one of the two is found in .dll or .exe resources? (or both can be there? ).
Sorry if its too many questions at once, but if anyone can explain this to me it would be really helpful. The reason i'm asking this is that i want to be ab...
how can I do the step above?
I'm trying to the the tutorial
http://developer.android.com/resources/tutorials/views/hello-mapview.html "HelloMapView" and they reccomend to Open the AndroidManifest.xml file and add the following as a child of the <application> element:
<uses-library android:name="com.google.android.maps" />.
how does th...
I created a test Activity that installs a shortcut of itself on the Android Home screen. When you click a button, the Activity is supposed to remove the same shortcut it just created. However, nothing I do seems to delete the shortcut.
Here is the Java code (ShortcutTest.java):
import java.net.URISyntaxException;
import android.app.A...
I have my iPhone WebApp actually running offline and caching all assets.
When I save it to the desktop and run the app, the webapp will continue to call
main.manifest (this was specified in my HTML tag as per the documentation).
Also I have setup my .htaccess file as below, and restarted apache
AddType text/cache-manifest .manifest
...
So i know that "offine mode" is supposed to work when you have no internet connection. But suppose I build a local network webapp, let's say at 192.168.1.100, then I leave my house, and i'm off the network, then I try to hit that address. Will the webapp pull from the cache, or will it say, "you have internet, but the host is unreachable...
I have a .NET application that is developed with Visual Studio 2008 which uses a C++/CLI DLL named xVJob.dll.
I am getting SideBySide errors when I try to run it on a test VM. The VM is running Windows Server 2003 SP2.
I can run and debug everything fine on my development machine, but when I try to run it on the test VM, it throws an ...