android - Marshmallow message application is not opening -


i trying open message application application getting activitynotfoundexception in marshmallow. used below code:

intent n = new intent(intent.action_view); n.settype("vnd.android-dir/mms-sms"); n.putextra("address", phone); n.putextra("sms_body", " "); startactivity(n); 

i use code on android m , works:

intent n = new intent(intent.action_view); n.setdata(uri.parse("sms:")); n.putextra("address", phone); n.putextra("sms_body", " "); startactivity(n); 

Comments

Popular posts from this blog

SVG stroke-linecap doesn't work for circles in Firefox? -

routes - Laravel 4 Wildcard Routing to Different Controllers -

cross browser - XSLT namespace-alias Not Working in Firefox or Chrome -