compatibility

Android Market - This application is available to over 0 devices?

痴心易碎 提交于 2019-11-27 20:32:48
I have published apk to the Android Market, activated and setup for free for all countries. Android Market says, my application is not compatible with any of the devices. I can see an application when I access Android Market from the PC browser but I can not download it from any of the Android phone (the same device used to test application before release). How is that possible if I have just few requirements? I have tested the application on a few quite old devices before upload and it worked. Information from the Publishing options: This application is only available to devices with these

VB6 Running on Windows 8?

青春壹個敷衍的年華 提交于 2019-11-27 20:22:40
Assuming that vb6 does not run on Windows 8 because the VB6 run time libraries are not shipped with Windows 8, would it not be possible to install the VB6 run time library on Windows 8 and then then run VB6? Or is there another problem? Kris Erickson EDIT: Microsoft is going to support the VB6 runtime in Windows 8. VB6 apps still work in Windows 8 in the Developer Preview, as of September 13th, 2011). . They also run in the Consumer Preview and as stated above, Microsoft are committed to having VB6 just work in Windows 8. This is a very difficult question to truly answer, but I'll try and

FragmentActivity causing ClassNotFoundException

荒凉一梦 提交于 2019-11-27 19:41:36
I just used Android SDK Manager to update Android SDK Tools to revision 17, and Android Compatiblity to revision 7. Now, the program I've been running for ages crashes on startup. Narrowing down the issue, I have created a new blank project, added android-support-v4.jar to the build path, and changed Activity to FragmentActivity and that's all. Now it crashes. The error message is: java.lang.ClassNotFoundException: com.example.test.TestActivity in loader dalvik.system.PathClassLoader[/data/app/com.example.test-2.apk] The code is: package com.example.test; import android.os.Bundle; import

“This program might not have installed correctly” message in Windows 7 RC

雨燕双飞 提交于 2019-11-27 19:41:27
I have an installer that works perfectly under NT 5.x, Vista, and Windows 7. It contains the proper manifest for UAC on NT 6.x. But starting with Windows 7 RC, every time the setup program closes, Windows produces an erroneous "This program might not have installed correctly" message, even though the program did install correctly with no problems whatsoever. I never got these spurious messages in Vista or in Windows 7 beta. I sent a bug report to Microsoft, but have not heard back. I thought that this might just be a glitch in the Windows 7 RC, but the problem is still there on a fresh install

Bluetooth framework for older iOS devices

夙愿已清 提交于 2019-11-27 19:02:12
问题 My question is related with Bluetooth technology around iOS. I've watched WWDC about Bluetooth Low Energy 101, what's new, the basics etc, and about using the CoreBluetooth framework available in iOS 5 and later. I've looked through different sites and documentations trying to find more information about Bluetooth 2.1 and 4, but there is so few. GameKIt is not an answer, I am developing an app to work with an non-iOS device. Some of the topics I've went through: Connecting to a Bluetooth

How to check SQL Server Database compatibility after sp_dbcmptlevel is deprecated?

不想你离开。 提交于 2019-11-27 18:56:52
According to BOL (SQL Server Books Online) on sp_dbcmptlevel , This feature will be removed in a future version of Microsoft SQL Server. Do not use this feature in new development work, and modify applications that currently use this feature as soon as possible. Use ALTER DATABASE Compatibility Level instead. Now, the only TSQL way I know of checking database compatibility is through sp_dbcmptlevel . As far as I know, ALTER DATABASE Compatibility Level is just for setting the compatibility level, not getting info. How should one to get compatibility level without using GUI? Nick Kavadias

How to make gradle generate a valid pom.xml file at the root of a project for maven users?

不羁岁月 提交于 2019-11-27 18:29:42
While only for two days now, I am definitely sold on using gradle for all of my Java projects, and drop pom.xml from the root of all my projects. However, I would like to remain maven-compatible, in the sense that I would like for a gradle task to be able to generate a suitable pom.xml at the root of the project should the user want it. At this moment, the only reference to a pom.xml I have is in this section of the build.gradle file (this is, with very few modifications, what is found here ): uploadArchives { repositories { mavenDeployer { beforeDeployment { MavenDeployment deployment ->

CUDA version X complains about not supporting gcc version Y - what to do?

我怕爱的太早我们不能终老 提交于 2019-11-27 16:01:44
问题 The question is about a specific combination of versions but is relevant more generally. I've just dist-upgraded from Kubuntu 12.04 to 14.04. Now, when I want to compile CUDA code (with CUDA 6.5), I get: #error -- unsupported GNU version! gcc 4.9 and up are not supported! I installed gcc-4.8 (and 4.7), and tried to use the symlinks-in- /usr/local/cuda/bin solution suggested here: CUDA incompatible with my gcc version but this doesn't work. What should I do? 回答1: This solution is relevant to

Are windows phone 7 apps compatible on windows phone 8 devices?

☆樱花仙子☆ 提交于 2019-11-27 15:03:04
very straight forward question. My company has developed a windows phone 7 app and have been testing it on a windows phone 7 device. Can we safely assume that the same app will be backwards compatible and work seamlessly on a windows phone 8 device such as a Nokia Lumia 920? Thanks in advance! Yes it will work. But it won't take advantage of all the WP8 features like a real WP8 app would. I'd suggest that you create a copy of the project and update it to WP8 for a better performence. Also replace any listboxes with LongListSelectors for example. In most scenarios it should just work, but you

Detecting API changes/evolution [closed]

百般思念 提交于 2019-11-27 15:01:22
问题 I want to measure API evolution for a given Java project, in particular new/renamed classes, new methods, newly deprecated methods, etc. Is there a tool that detect such changes? Back in 2007, a Google GSoc project was initiated, however, I cannot find the final work. 回答1: I'd use Clirr for that, a binary compatibility checker. From the Clirr web site: What is it? Clirr is a tool that checks Java libraries for binary and source compatibility with older releases. Basically you give it two sets