Reputation: 11012
How can I check if the device has SMS capabilities (e.g phones probably will but tablets might not)?
Upvotes: 1
Views: 1499
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
Reputation: 4147
You could check for SmsManager being there or not. I guess unconnected tablets wont have it.
Upvotes: 0