manifest

My application is not listed for tablets

烂漫一生 提交于 2019-12-06 02:20:21
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" package="development.nk.anguide" android:versionCode="2" android:versionName="1.01" > <supports-screens

Correct mt.exe syntax to resolve pyodbc import problems

时光怂恿深爱的人放手 提交于 2019-12-06 01:59:00
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 resolve it. In PowerShell: C:\my\site-packages> C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\mt.exe

How to activate “disable display scaling on high dpi settings” programatically [duplicate]

被刻印的时光 ゝ 提交于 2019-12-06 01:57:10
问题 This question already has answers here : How to configure an app to run correctly on a machine with a high DPI setting (e.g. 150%)? (5 answers) Closed 3 years ago . I am developing Windows form application using C# on Visual Studio 2010. I found that this application is scaled if I used high dpi display setting. But if I activate file property "disable display scaling on high dpi settings" by mouse right click menu on windows explorer, it seems that it is not scaled. Is there a way to

Can different versions of DLL be loaded in same application?

血红的双手。 提交于 2019-12-06 00:59:50
问题 My application uses one version of library (a.dll), I am using another DLL(b.dll) which in-turn uses older version of the same library (a.dll) that i use. I am building the application by embedding a manifest file. The DLL i use is also using a embedded manifest file. I am having both the versions of the library in my WinSXS folder. My application is not able to load the appropriate versions of DLLs. Will having a separate manifest file (not embedding into DLL) help resolving the problem?

Is it possible to conditionally use XPManifest at runtime?

此生再无相见时 提交于 2019-12-05 18:00:28
问题 I'm trying to let the user choose if he wants to use themed style or not. Is it possible to dynamically "load" the XPManifest? If user accepts the themed style then use the manifest, otherwise use the classic theme. At program startup after dialog with style selection closes I would like to do something like: if UserWantsThemedStyle then LoadManifestSomehow else UseClassicStyle; Is it even possible to do it at runtime? Thanks 回答1: Yes you can do this. You need to use the activation context

The <uses-permission> element must be a direct child of the <manifest> root element

故事扮演 提交于 2019-12-05 17:58:03
I'm trying to run my android app but I'm getting the following error The element must be a direct child of the root element and The element type "application" must be terminated by the matching end-tag "". Can somebody write me the 'correct' version of it? Thanks. This is my manifest file <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.example.daytraders" android:versionCode="1" android:versionName="1.0" > <uses-sdk android:minSdkVersion="8" android:targetSdkVersion="19" /> <application android:allowBackup="true" android

How do I force a native application to use an older C runtime

女生的网名这么多〃 提交于 2019-12-05 16:08:29
Visual Studio 2010 installs version ...4974 of the VC9 runtime whose .pdbs are unavailable . How can I force my GME.exe to use an older VC9 runtime? I've tried putting this into GME.exe.config : <?xml version="1.0"?> <configuration> <windows> <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> <assemblyIdentity type="win32" name="GME" processorArchitecture="x86" version="1.0.0.1"/> <dependentAssembly> <assemblyIdentity type="win32" name="Microsoft.VC90.CRT" publicKeyToken="1fc8b3b9a1e18e3b" processorArchitecture="x86" /> <bindingRedirect oldVersion="9.0.21022.8-9.0.21022.4974"

WP7 app version

只愿长相守 提交于 2019-12-05 14:28:30
问题 A Windows Phone 7 app, it seems, has two places with version number - one in AssemblyInfo.cs (via AssemblyVersion / AssemblyFileVersion attributes), the other is WMAppManifest.xml. Those two seem uncorrelated - changing one does not affect the other. The Marketplace, it seems, uses the one from the manifest - can someone please confirm this? The real question is - how do I retrieve the one from manifest programmatically to display on the About screen? 回答1: The WmAppManifest.xml number is in

Duplicate lines being generated in .manifest file

你。 提交于 2019-12-05 14:05:45
SUMMARY: My project uses a COM component which needs to be self-registered. The project has it's own custom myapp.exe.manifest file, which includes the two lines: <comInterfaceExternalProxyStub name="ICapturer" iid="{DCAFCA37-546E-4D0A-9C02-D3221E65FCA9}" proxyStubClsid32="{00020424-0000-0000-C000-000000000046}" baseInterface="{00000000-0000-0000-C000-000000000046}" tlbid="{8EDAD3BB-AE5F-43B4-A2F1-B04F4130F2E0}" xmlns="urn:schemas-microsoft-com:asm.v1" /> <comInterfaceExternalProxyStub name="IVideoWMVSettings" iid="{1A814EC2-55A9-4FA2-99E2-2C20A897C2E7}" proxyStubClsid32="{00020424-0000-0000

android - Unable to instantiate activity - ClassNotFound - Fails on one eclipse but not other

不打扰是莪最后的温柔 提交于 2019-12-05 13:09:33
I am receiving a 'Unable to instantiate activity' error when I try to load up my program. One thing that baffles me is the exact same code works on my older PC. I just built a new one with new eclipse / android SDK / etc. I have both machines running the same code, one works fine and the other gives this error. Any thoughts? Edit: One thing I notice in the stack is Caused by: java.lang.ClassNotFoundException: com.voldaran.puzzle.graBLOX.PopActivity in loader dalvik.system.PathClassLoader[/data/app/com.voldaran.puzzle.graBLOX-2.apk] It lists graBLOX-2.apk . Why is it using '-2.apk'? When I