I tried running a share example apk on Chrome ARC Welder having following code.
Intent share = new Intent(android.content.Intent.ACTION_SEND);
share.setType("text/plain");
share.addFlags(Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET);
share.putExtra(Intent.EXTRA_SUBJECT, "Title Of The Post");
share.putExtra(Intent.EXTRA_TEXT, "Content of post");
startActivity(Intent.createChooser(share, "Share"));
When i run this then window asking to save a file appears. When save and open the file then only the content appears.
Is there some different way of handling share / action_send in Chome ARC ?
I tried searching for reference materials / guides but don't seem to find it. Any reference materials / guides or any examples will be very helpful. Thanks.