R robn New Member Licensed User Longtime User Oct 7, 2018 #1 Please help - This works on Ver 6 but not on Ver 8 (Oreo) Private i As Intent i.Initialize(i.ACTION_VIEW,"") i.SetType("vnd.android-dir/mms-sms") i.PutExtra("sms_body", "some text" ) i.PutExtra("address", "033333333") StartActivity(i) New SMS handler in Ver 8?
Please help - This works on Ver 6 but not on Ver 8 (Oreo) Private i As Intent i.Initialize(i.ACTION_VIEW,"") i.SetType("vnd.android-dir/mms-sms") i.PutExtra("sms_body", "some text" ) i.PutExtra("address", "033333333") StartActivity(i) New SMS handler in Ver 8?
Erel B4X founder Staff member Licensed User Longtime User Oct 7, 2018 #2 Please use [code]code here...[/code] tags when posting code. Where does this intent come from? Try to set the action to "android.intent.action.SENDTO" Upvote 0
Please use [code]code here...[/code] tags when posting code. Where does this intent come from? Try to set the action to "android.intent.action.SENDTO"
R robn New Member Licensed User Longtime User Oct 7, 2018 #3 sorry about the code... it turned-out that "vnd.android-dir/mms-sms" is no longer supported in Oreo I commented it and it worked. Thanks. Upvote 0
sorry about the code... it turned-out that "vnd.android-dir/mms-sms" is no longer supported in Oreo I commented it and it worked. Thanks.