compatibility

Latest

  • Skype app won't work on low-end Windows Phone devices (update: works on Lumia 610)

    by 
    Mat Smith
    Mat Smith
    04.23.2012

    Buried within Skype's announcement that its app has finally graduated from beta on Windows Phone, the mention of a 512MB minimum memory requirement reveals that the Internet phone service won't -- currently -- work with the likes of Nokia's Lumia 610 and the ZTE Tania. Skype has logged this under "current issues", which we hope means the company is working tirelessly to squeeze the app into cheaper Windows Phone hardware. Other features still being worked on include Bluetooth compatibility and Skype SMS messaging support. C'mon, they're part of the family now -- can't they all just get along? Update: Nokia's told us that it's now got the Skype app working on the Lumia 610.

  • Zynga CEO: company building cross-platform cloud compatibility

    by 
    Mike Schramm
    Mike Schramm
    03.23.2012

    We've already heard from Zynga how the company plans expand its scope a little bit from its very popular Facebook-only titles. Zynga founder Mark Pincus says in an interview with Om Malik that its policy extends to current tech being built to share saves across the cloud. "In other words, you can play a game on a computer and call it up on Xbox," Pincus says as an example, "and you resume from the point you left off, except the game play will now be customized for the Xbox controller." Game information will be shared, but the experience will be different.That's already the case for Zynga's games on iOS -- they have a very different feel when played on mobile devices, and have even found different audiences. "Words for Friends doesn't do as well on Facebook as it does on the iPhone," for instance, "because they are a mobile first experience. Our poker game does well on the mobile as well."This doesn't mean that Pincus is saying Zynga's working on Xbox ports of its titles. Instead, the company is building out the tech right now to extend these games out in various forms to even more platforms in the future.

  • PSA: Can your machine run Mountain Lion?

    by 
    Terrence O'Brien
    Terrence O'Brien
    02.17.2012

    Ah, compatibility, she can be a cruel mistress, prone to leaving your favorite devices out in the cold and your wallet a few bills lighter. Apple's latest OS update, Mountain Lion, is no different. OS X 10.8 won't run on just any Mac, so, the question is, will it run on yours? Well, if you've got any machine from 2009 or newer the answer is yes. Older than that and things get a little bit shaky. iMacs are the most forgiving, with support starting on the mid-2007 models. Any Pro desktop from early 2008 on should be fine, while Xserves get cut off at early 2009 along with the Mac Mini. The original Air is already getting turned aside and you'll need a late 2008 model (or newer) for the update, while vanilla MacBooks are nearing total obsolescence as support starts with the aluminum models from 2008. Lastly, those of you rocking 15- or 17-inch MacBook Pros should be golden starting with late 2007 models. Oh, and any 13-inch Pro should be good to go.

  • MagnetU connects you with similar people in your area, because diversity is overrated

    by 
    Amar Toor
    Amar Toor
    12.07.2011

    You could make friends the old fashioned way, with casual introductions, eye contact and other intrinsically human social skills; or you could just sit back and let MagnetU do all the heavy lifting for you. The Israeli startup, founded in 2010, has just unveiled what it calls a "proximity networking" device -- a tiny accessory that connects users to other like-minded people within their immediate vicinity. Within this lightweight gadget lies information on a user's "social desires," which can be customized and modified depending on a given situation. If you're at a networking event, for example, you can activate your "business" profile, before switching into the grossly mistitled "social" mode once you walk into a bar. Once activated, the device will automatically scan for other users within your area, comparing your data against theirs. If it finds a match, both misfits will be notified with a text message that provides details on their level of compatibility. At that point, it's up to you to exchange furtive glances and do the whole "Come here often?" Kabuki routine. The tool could also open up new marketing avenues for retailers, though MagnetU plans to begin rolling out its $24 device at college campus events, where more traditional social lubricants are few and far between.

  • Apple releases new Digital Camera RAW update

    by 
    Mike Schramm
    Mike Schramm
    11.10.2011

    Apple has released yet another compatibility update for the RAW format in digital cameras for use with iPhoto and Aperture, and it makes the following (mostly new) cameras compatible: Canon PowerShot S100 Nikon 1 J1 Nikon 1 V1 Nikon COOLPIX P7100 Olympus PEN E-PL1s Olympus PEN E-PL3 Olympus PEN E-PM1 Panasonic LUMIX DMC-FZ150 Sony Alpha NEX-5N Sony Alpha SLT-A65 Sony Alpha SLT-A77 Spiffy! I'm interested to see the new PowerShot in there -- it's relatively inexpensive for cameras that can take pictures in the RAW format, and the PowerShot line is generally good for beginner to mid-level users. Of course, you should always do your own research before embarking on a camera purchase, but if you want a cheap(er) way to play with the RAW format, that might be a good option. As always, the update is available through Software Update.

  • OpenMobile demos ACL for MeeGo, promises 100 percent compatibility with Android apps (video)

    by 
    Zachary Lutz
    Zachary Lutz
    09.22.2011

    OpenMobile is a new company on the application compatibility scene whose primary product, the Application Compatibility Layer, promises to bring Android's large volume of apps to smaller platforms. In the following video, ACL is shown running on MeeGo, where the creators promise full compatibility with every Android app -- without the need for developer modification -- by leveraging Google's runtime environment and Dalvik VM. While support for Intel and Nokia's misbegotten lovechild is first out the door (along with Linux itself), the company plans to introduce similar versions for Bada, QNX, Symbian, WebOS and Windows. Like its competitor, Alien Dalvik, OpenMobile is positioning its Application Compatibility Layer to OEM manufacturers rather than consumers. Unfortunately, this eliminates any hope you might've had for installing Hanging with Friends on that N9 you've pre-ordered -- unless OpenMobile's able to convince the folks in Espoo with a mighty good sales pitch, anyway. [Thanks, Mikko]

  • Dev Juice: Help me leverage Lion-only features

    by 
    Erica Sadun
    Erica Sadun
    08.29.2011

    Dear Dev Juice, I'm part of a tiny company developing iOS apps. We're about to develop our first Mac OS X app. There are many cool new features in MAC OS X Lion and we'd like to take advantage of these. However, this would mean only people on Lion could use our app... Do you think most people have upgraded to Lion? Or do you think we'd be ignoring a lot of potential users still on Snow Leopard? Gareth Dear Gareth Lots of users have made the jump to Lion but lots more have not. Rather than jumping on the Lion bandwagon completely by providing a Lion-only application, consider conditional coding instead. Conditional coding allows you to offer certain features only to Lion users while ensuring the application remains both 10.6 and 10.7 ready. This solution allows you to build your application for the greatest number of users. Make sure you clarify in your marketing text that certain features are Lion-only so you don't tick off either Apple or your user base. Here are a few conditional coding hints. Check for properties using key/value coding. If valueForKey: returns nil, the property is not available in Snow Leopard. Check for classes using NSClassFromString(). Code around non-existent classes in Snow Leopard by disabling features or removing inappropriate options. Check for selector compliance using respondsToSelector:. When newer APIS are supported, objects will report that they respond to those selectors, letting you call them without crashing the program. You may generate compile-time warnings about unimplemented selectors unless you use work-arounds like performSelector:withObject:. If you really want to go hard core, you can build NSInvocation instances directly. Happy Developing!

  • iCade-compatible games listed

    by 
    Mike Schramm
    Mike Schramm
    08.18.2011

    Touch Arcade has a list of the games on the App Store currently compatible with ThinkGeek's iCade arcade stand for the iPad. It's certainly more than just the one official Atari app that it was compatible with at release, but the list is still pretty short, with only 16 titles included: No Gravity Warblade HD Sideways Racing Silverfish MAX Match Panic Mos Speedrun Velocispider Super Mega Worm Super Mega Worm Vs. Santa Compression HD IronStar Arena Emerald Mine Space Inversion Space Inversion 2 Space Inversion Puzzle Freeesh The good news is that with titles like Super Mega Worm and Velocispider in there, these are definitely some quality titles, not just filler-ware. The list is still pretty small when you think about the App Store in terms of total number of games. Hopefully spotlighting titles like these will encourage developers to step up and support the iCade, especially when a game like theirs makes sense for a real-life arcade stick and buttons. True, the audience of people that actually owns the device is smaller than the iPad audience in general, but the iCade is a pretty cool and unique setup, and it would be nice to see it supported a little more widely.

  • Lion-ready apps start showing up in Mac App Store

    by 
    Chris Rawson
    Chris Rawson
    07.14.2011

    Earlier this week, Apple announced that developers should start submitting their Lion-ready apps to the Mac App Store. While Lion itself has been a no-show despite rampant speculation that it would launch today, Lion-ready third-party applications are starting to show up. OS X Daily spotted at least one app, WordCrasher, that's been updated with Lion compatibility, and MacStories found three more. App updates have included support for several Lion features, including full-screen mode, new Multi-Touch gestures, and support for Versions and Resume. Apple issued updates for several of its own apps earlier this week, including the entire iLife '11 suite and Aperture. While Lion was widely expected to launch today, current speculation points to next week as a more likely target. The "delay" (if you want to call it that, as no official launch date other than "July" was ever given) will be beneficial to developers, who will have more time to get their applications Lion-ready before the public launch.

  • Samsung's Galaxy Tab 10.1 now syncs with your Mac, updated Kies software to thank

    by 
    Darren Murph
    Darren Murph
    06.24.2011

    You heard right -- Samsung's slimmest slate yet is now on speaking terms with OS X, well over a month after the first ones slipped out to developers at Google I/O. Oddly enough, it looks as if Android File Transfer is still stuck in yesteryear, with Samsung itself pushing out a revised build of Kies to enable Tab-to-Mac relations. If this discussion is relevant to your interests, the source links below will be as well.

  • Android Market web store now checks which apps are compatible with your devices

    by 
    Sharif Sakr
    Sharif Sakr
    06.10.2011

    Google has already made some tough moves to tackle fragmentation, but it's clearly still wary of the problem. It's just tweaked the Android Market web store to show users which apps are compatible with which of their gadgets. Of course, compatibility screening was already in place for users who accessed the Market from within their device, but this update should still be of use to those who surf the web store, especially if they're rocking multiple handsets or a phone-plus-tablet combo.

  • Intel's Ivy Bridge coming Q1 2012, growing festive moss while you wait

    by 
    Sean Buckley
    Sean Buckley
    05.30.2011

    If you were religiously awaiting the fruition of last month's Intel leak, brace yourself: we've got another one. Although Intel's updated roadmap hasn't changed anything per se, it does offer a few specifics. Whereas the previous schedule only suggested we'd be crossing the Ivy Bridge in the first half of 2012, the new roadmap shows the 22 nanometer processor penned in at the end of the first quarter. The Sandy Bridge E series is still on schedule for Q4 however, so unless you just have to have native USB 3.0 and DirectX 11 support, you still have plenty to look forward to. Otherwise, we'll see you in April.

  • Acer Iconia Tab A100 delayed due to Honeycomb compatibility issues?

    by 
    Dana Wollman
    Dana Wollman
    05.25.2011

    Acer was already kind enough to give us a heads up that it would not be launching the Iconia Tab A100 in May, as planned. But the company wasn't exactly champing at the bit to explain why its 7-inch, Tegra 2-powered tablet is taking such a tedious trip to market. According to a DigiTimes report, at least, the hangup comes down to compatibility issues with Honeycomb, an OS that so far hasn't been seen on many 7-inch slates. Specifically, the site's unnamed sources say Acer has encountered problems with certain applications and that Google, meanwhile, is "busy resolving other issues." All in all, precisely the kind of complication that Ice Cream Sandwich promises to circumvent. Oh, and speaking of delays, DigiTimes adds that the Iconia Smart might go on sale in July due to earthquake-related supply shortages. We asked Acer for clarification, but the company declined to comment, so it looks like we'll just have to wait and see what goodies late summer brings.

  • Intel VP confirms ARM versions of Windows 8 will offer no compatibility with legacy apps

    by 
    Tim Stevens
    Tim Stevens
    05.18.2011

    We already knew that there would be multiple flavors of the next version of Windows. This is, after all, Microsoft, and if it isn't available in dozens of different SKUs, one for each rung on the ladder from student to corporate executive, then it isn't worth stamping to a disc and throwing in a box. However, thanks to Intel Senior Vice President Renee James, we now know for sure that there will be a decisive split between the various ARM and x86 editions. James confirmed yesterday that x86 versions will work just fine on Intel, AMD, and other compatible chips, running all your legacy applications with aplomb. However, the ARM versions of the OS (which may number as many as six) won't include any sort of instruction emulation, James saying "Our competitors will not be running legacy applications. Not now. Not ever." That's something that Intel CEO Paul Otellini hinted at back at CES, which means Office running on ARM must have been a re-write -- or at least a re-compile. That's bad news for anyone hoping they'd be able to install Command & Conquer Collector's Edition on the Tegra-powered Windows 8 tablet of their dreams. James additionally indicated there will be four separate Windows 8 ARM SoCs, meaning someone has joined NVIDIA, Qualcomm, and TI since the CES unveil. Intrigue!

  • Capcom posts Street Fighter 4 Arcade Edition FAQ

    by 
    Richard Mitchell
    Richard Mitchell
    05.16.2011

    With the release of the Super Street Fighter 4 "Arcade Edition" DLC upgrade less than a month away -- the retail version will follow on June 28 -- there are some burning questions that must be answered. Capcom has heard the call and clarified several details in a new FAQ. First and foremost, the full Arcade Edition update will comprise several downloads. Beginning on June 7, an an automatic update will be released to prepare your console or PC for the new content. Then, players choose between purchasing the Arcade add-on or installing the free "Update Kit." The Update Kit will allow vanilla SSF4 players to participate in matchmaking with Arcade Edition owners and will also allow them to spectate Arcade Edition matches. However, those using the Update Kit will not be able to play as or against any of the new characters, and all matches played will default to the original SSF4 character balance. Additionally, Arcade Edition purchasers will have the option to play with the original character balance, though doing so will disable the new fighters. Head over to Capcom-Unity for more answers.

  • Galaxy Tab 10.1 Limited Edition not seen in Android File Transfer, Windows usability is spotty

    by 
    Darren Murph
    Darren Murph
    05.13.2011

    You know what's cool? Handing out 5,000 Android tablets to your most loyal developers at Google I/O. You know what's not cool? Handing out 5,000 Android tablets that can't have files loaded onto them. Believe or not, that's exactly what happened at this week's I/O conference, where hordes of developers were handed a Galaxy Tab 10.1 Limited Edition that cannot currently interface with OS X, and has a whale of a time doing so with Windows 7. During our initial preview of Music Beta, we noticed that our MacBook Pro (OS X 10.6) wouldn't actually recognize the tablet, even after installing Android File Transfer. Given that we didn't actually need that functionality for the purpose of said article, we threw it on the backburner. For those unaware, Android File Transfer is a small app that's required to transfer content between OS X and Android 3.0. Avid users of Froyo and Gingerbread may be appalled that any Honeycomb device they buy will require a piece of software to interface with it, but hey -- there it is. At any rate, it seems to us that the latest build of Android File Transfer doesn't include the device ID for Samsung's heretofore unreleased Tab 10.1; if you'll recall, the standard edition of this thing isn't slated to hit consumer hands until June 8th. Regardless of what tricks we tried (installing a Mac version of Kies Mini, for example), we couldn't get a single Apple in our stable to recognize the thing. In one instance, a Mac viewed the device as a "Samsung Modem" within the Networking pane -- that's as close as we could come to getting the two to mingle. AllThingsD's Ina Fried said her Tab 10.1 LE was merely recognized as a camera-like device within Aperture. Over on the Windows side, things are only marginally less awful. We've had a couple of Wintel boxes outright refuse to play nice with this "mysterious USB device," while others required multiple reboots and driver searchers to finally mount it as an external storage device -- and only with USB Debugging disabled. The upside is that those with patience (and a Windows 7 rig) can look forward to a single method of transfer, but it's certainly less than ideal. We're surmising that Google's cooking up a new version of Android File Transfer as we speak that'll take care of the compatibility issues, hopefully long before consumers start seeing these in early June. But for developers in the here and now? Stop wasting your afternoon trying to figure out why your Mac just won't cooperate, and give that Win7 system a little love. Update: After a bit of additional digging, we noticed that it's possible to access the Tab's file system from a Mac or Windows PC by using the Android SDK, putting the tablet in USB debugging mode, and running ddms. It's not the most convenient solution if you want to quickly and conveniently transfer some content to / from the device, but it should work until AFT sees an update. Alternatively, we're hearing that XNJB -- an older open source project originally built for Creative Nomads -- enables files to be transferred whenever it's in a good mood.

  • HTC Sense 3.0 will only support Sensation, EVO 3D, Flyer and newer devices; older hardware left behind

    by 
    Vlad Savov
    Vlad Savov
    04.14.2011

    Unfortunate news for anyone who saw HTC's Sense 3.0 UI and started dreaming about seeing it on their Desire HD, Incredible S or any other handset that doesn't ship with it preloaded. HTC has said that because of the hardware requirements of the fancier new Android skin, only the dual-core Sensation and EVO 3D smartphones and the 1.5GHz Flyer tablet will be benefiting from it for now. The company's expected to introduce more tablets in the summer and its inevitable march forward with smartphones will continue, but Sense 3.0 -- and those delectable multifunctional lock screens -- will remain the exclusive privilege of its highest-end devices. Update: Those older devices may be missing the boat, but they will at least get a set of floaties. HTC left a message on Twitter that the company is "working to incorporate other aspects" of Sense 3.0 that will come to older devices. Hopefully this includes that flash new weather app.

  • What is 'ix.Mac.MarketingName' and why is it listed as a supported device for iOS apps?

    by 
    Vlad Savov
    Vlad Savov
    04.14.2011

    On today's session of "things to ponder before lunch," we have a strange new text string added to the iTunes preview of some iOS apps, which identifies an "ix.Mac.MarketingName" as one of the compatible devices with software designed for iOS. We're seeing it listed alongside a whole bunch of apps, but importantly not all of them, which hints that it might not be just a stray piece of code or a bug in the system. The location-aware and voice-centric MyVoice Communication Aid and Microsoft's Bing for iPad apps do not include that funky MarketingName code, suggesting that it's there as a placeholder for a new supported device of some sort -- could apps finally be coming to the Apple TV? For now, we'd rather not stack speculation on top of uncertainty, so we'll just jot this down as another interesting development in the walled garden of Cupertino and wait patiently to see what (if anything) comes from it. [Thanks, Daniel, Chris and Nick]

  • Android 2.3.3 gives you another reason to want it: WebM support

    by 
    Vlad Savov
    Vlad Savov
    02.23.2011

    Our first indication of a delivery date for the Gingerbread iteration of Android came way back in May when we were perusing the FAQ to Google's then newly announced WebM video format. There should be no expressions of shock, therefore, to hear that WebM support has indeed been added into Google's mobile OS, with the lowest compatible version being today's freshly introduced Android 2.3.3. Google has already demonstrated its intention to brute-force this format into our lives, which we'll be quite happy to accept just as soon as Gingerbread starts appearing on more devices than its own Nexi.

  • Bloomberg: RIM working to let BlackBerry PlayBook run Android apps, but Dalvik's not the way

    by 
    Sean Hollister
    Sean Hollister
    02.11.2011

    We'd heard sweet, sweet rumors that RIM would include a Java virtual machine in the BlackBerry PlayBook and even bring Android apps on board -- and lo and behold, Bloomberg's corroborating those claims with no fewer than three anonymous sources. Where the new rumor diverges is that the Dalvik virtual machine used in Google's OS reportedly won't be part of the formula; RIM considered it, these sources say, but decided it didn't want to get involved in the Oracle / Google legal fracas. Apparently, the company's working on this secret project in-house and targeting a possible release in the second half of the year. We have to say, the ready availability of roughly 200,000 Android programs could be quite the shot in the arm if WebWorks and AIR don't produce killer apps right away.