-3

I am working in java for android, is there any way to completely disable messaging for an android device? Ex: Any time the "loop" returns true the text messaging is disable, no incoming/outgoing are available; or possibly block the user from accessing messaging if returned true?

Ryan B
  • 3,364
  • 21
  • 35

1 Answers1

1

is there any way to completely disable messaging for an android device?

Not really. You could put the device into airplane mode on earlier versions of Android, but fortunately that's now locked down too.

The technique outlined in the link provided in the comment will not be reliable for blocking incoming messaging, as other SMS clients can and do have that priority.

CommonsWare
  • 986,068
  • 189
  • 2,389
  • 2,491