Create message while sending Image through Asmack
问题 There is an issue that I am facing while sending Images through XMPP.Below is the code snippet that i have done. I don't know what is wrong with the code . Message msg = new Message(emailId, Message.Type.chat); ImageTransferExtension transfer = new ImageTransferExtension(); transfer.setImageName(mImageUri.getEncodedPath()); transfer.setUserRecipient(emailId); msg.addExtension(transfer); And here is the ImagesTransferExtension code snippet EDIT : public class ImageTransferExtension implements