Mtag wrote: > Ø I - Is the manufacturer responsible for Android market application > compatibility,
No. > Ø I - Is Android equipped with a Software layer enabling cross > device compatibility, Somewhat. > - Are application providers responsible for the compatibility of > their applications ? Most definitely. > Ø - - Does the Android Market use some kind of device detection that > actually hide or show some applications that’ve proved to be > compatible ? For some things, you can use <uses-configuration> elements in your manifest to declare what is and is not acceptable in terms of hardware. Right now, though, there is no such option for specifying you need a camera, or any particulars about the camera (e.g., minimum number of megapixels). > Ø - Do we need to have as many different application as there are > different devices ? I hope not. > How does it work, Camera.open() either returns a Camera object, or it does not. In the latter case, you either do not have a camera on the device, or some other application is using it, so handle that accordingly. Otherwise, just use the Camera object. I am uncertain what you are expecting to change between devices. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://twitter.com/commonsguy Android Development Wiki: http://wiki.andmob.org --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Android Discuss" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-discuss?hl=en -~----------~----~----~----~------~----~------~--~---
