how can I attach a JSONObject as a json File to a eMail Intent in Android?
My code for this is at the moment:
JSONObject jsonObj = new JSONObject("text");
Intent intent = new Intent(Intent.ACTION_SEND);
intent.setType("text/plain");
intent.putExtra(Intent.EXTRA_EMAIL, "blabla");
intent.putExtra(Intent.EXTRA_SUBJECT, "blabla");
intent.putExtra(Intent.EXTRA_TEXT, "blabla");
startActivity(Intent.createChooser(intent, "Send Email"));