0

Are there any default apps on Android? Especially in 4.2?

iOS 6 has Passbook, built-in Facebook/Twitter support, allowing for greater integration into these services.

Is there something similar on Android that can reliably be accessed across all devices running the latest Android OS version?

I know that there are Android apps that can read the Passbook file, but they're not Google products the way Passbook is an iOS product. Similarly, I know that there are Facebook and Twitter Android apps, but they may or may not be installed and may or may not respond to an Intent that's possibly structured differently between versions of those apps. Am I just doomed to deal with this fragmented space, building for the past and hoping it won't break in the future?

boo-urns
  • 10,136
  • 26
  • 71
  • 107

1 Answers1

0

Yes, all Android developers are doomed to this fate. Most Android devices come with things like GMail, Google Calendar, and so on, but Android is fully open, which means not all devices have to include these (and in fact, have gotten in trouble for including them in the past).

Here are some things to keep in mind, though (in 99.999%+ of cases):

  • The Google Play store will always be installed on the device (assuming that's where you publish your app).
  • Either the browser or some form of it (Chrome, Dolphin, etc.) will be installed on the device.

And some other tips for developing for compatibility:

Those aside, I have one final note: Assume nothing. Assume everything will break. Whenever you call an intent, you should be wary and catch any issues (such as ActivityNotFoundExceptions).

Community
  • 1
  • 1
Cat
  • 66,919
  • 24
  • 133
  • 141
  • The default browser that shows up on the phone when you first load it up isn't necessarily Chrome, right? I've seen that it's just "Browser"... – boo-urns Dec 23 '12 at 23:31
  • @DarrenGreen Depends on the device. If I'm not mistaken, the Nexus 4, 7, and 10 come equipped with Chrome out of the box. Also, I believe some of the manufacturers come up with their own browser software. (The TouchWiz stock browser has tilt-to-zoom, for example.) – Cat Dec 23 '12 at 23:46