Some devices ie. Galaxy Tablet 10.1 can only send SMS, but cannot call. Some other devices like Asus Transformer don\'t even have SIM card.
How can I detect if devic
That should do it:
PackageManager pm = this.getPackageManager(); if (pm.hasSystemFeature(PackageManager.FEATURE_TELEPHONY)) { System.out.println("horray"); } else { System.out.println("nope"); }