Код: Выделить всё
Intent whatsappIntent =new Intent(Intent.ACTION_SEND,Uri.parse(
"https://api.whatsapp.com/send?phone=+919999999999&text=This is a Demo Message"));
whatsappIntent.setFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
whatsappIntent.setType("application/pdf");
whatsappIntent.putExtra(Intent.EXTRA_STREAM, uri);
startActivity(whatsappIntent);
Я могу отправлять только сообщения, но не файл PDF.
Могу кто-нибудь, пожалуйста, дайте мне решение
Подробнее здесь: https://stackoverflow.com/questions/784 ... oid-studio
Мобильная версия