2

Is it Possible to set Default SMS application back to Messaging app in background or without using this code

 Intent intent = new Intent(Telephony.Sms.Intents.ACTION_CHANGE_DEFAULT);
                        intent.putExtra(Telephony.Sms.Intents.EXTRA_PACKAGE_NAME, "vnd.android-dir/mms-sms");
                        startActivity(intent);
  • http://stackoverflow.com/questions/23110047/android-choose-default-launcher-programatically – Rajesh Nov 02 '15 at 06:41

1 Answers1

2

No, the reason the Intent exists is so that the user has the final option of choosing their default SMS app.

ianhanniballake
  • 191,609
  • 30
  • 470
  • 443