Baldrick
Baldrick

Reputation: 11012

Android check sms

How can I check if the device has SMS capabilities (e.g phones probably will but tablets might not)?

Upvotes: 1

Views: 1499

Answers (2)

Baldrick
Baldrick

Reputation: 11012

I answered the question myself, I'm using;

if(this.getPackageManager().hasSystemFeature(PackageManager.FEATURE_TELEPHONY)){
  // THIS PHONE HAS SMS FUNCTIONALITY
}else{
  // NO SMS HERE :(
}

Upvotes: 1

the100rabh
the100rabh

Reputation: 4147

You could check for SmsManager being there or not. I guess unconnected tablets wont have it.

Upvotes: 0

Related Questions