I have a problem for sharing data in assets folder and I wrote codes for doing it.but it's not work and i couldn't share anything. i want share images via all social network android applications. this is my code:
String path="file:///android_asset/"+share.jpg;
Intent whatsappIntent = new Intent(Intent.ACTION_SEND);
Uri uri=Uri.parse(path);
whatsappIntent.setType("image/*");
whatsappIntent.putExtra(Intent.EXTRA_STREAM,uri);
try {
startActivity(whatsappIntent);
} catch (android.content.ActivityNotFoundException ex) {
//ToastHelper.MakeShortText("Whatsapp have not been installed.");
}
How i can resolve it thanks