mms Questions

1

I am using the code below to try to send an MMS message with python-messaging https://github.com/pmarti/python-messaging/blob/master/doc/tutorial/mms.rst Although the connection seems to go smoothl...
Sailcloth asked 5/1, 2019 at 16:52

5

Solved

I have this code: Intent intent = new Intent(); intent.setAction(Intent.ACTION_SEND); startActivity(intent); Which will successfully launch a Messaging App on Android. But how can I atta...
Demonic asked 18/6, 2013 at 4:34

2

Solved

I'm doing some Android malware research for MMS based attacks. And I'm looking for a manual way to retrieve or download a received MMS message. I was hoping to find some curl or wget lines to be ab...
Bailes asked 22/5, 2017 at 16:7

1

My application basically backup the SMS and MMS to cloud server. I used below URI to retrieve data from database. SMS- Uri uri = Uri.parse("content://sms/"); MMS-Uri uri = Uri.parse(...
Nigel asked 3/8, 2016 at 6:46

3

I need to send MMS. Into my hero this code looks ugly but works: Intent sendIntent = new Intent("android.intent.action.SEND_MSG"); sendIntent.putExtra("address", toText); sendIntent.putExtra(I...
Orban asked 29/1, 2010 at 22:8

3

Solved

I am having an issue with a task I'm supposed to do, I'm supposed to send MMS using our own interface on android 2.1 so as you can guess calling the default Activity is out of the question. So my q...
Swagman asked 28/9, 2010 at 9:33

2

I want to send MMS from my application to a specific number. I've searched and found this code but I have no idea if this code what I need or not. My Questions is : -can anyone explain this code ...
Marciemarcile asked 29/3, 2012 at 19:28

6

I want to send message with image data. So I used MFMessageComposeViewController. But that controller provide only SMS service. So I used UIPasteBoard attached an image data. But It doesn't work, e...
Fourteenth asked 26/8, 2010 at 17:8

0

I've been struggling to send an image file by MMS for the last two days. The crazy thing is, there are no crashes! This code is in my service: static Settings settings; public static void sendPi...
Bountiful asked 23/11, 2017 at 5:40

1

Solved

We are working on a app based on Google's Rich Messaging Platform (RCS) and I'd like to ask some specific questions pertaining to how SMS is delivered into Android devices. Questions for the matte...
Kelsey asked 6/11, 2017 at 2:40

2

Solved

I want to attach an image to a MMS, on iOS7. I wrote following code: MFMessageComposeViewController *messageController = [[MFMessageComposeViewController alloc] init]; messageController.messageC...
Imprecise asked 3/10, 2013 at 22:56

5

I want to read MMS data I have seen the part table in the mmssms.db where the mms entries are stored; I am using a cursor and I want to know the appropriate URI; I am using "content://mms-sms/conve...
Saldivar asked 10/6, 2010 at 7:0

1

I'm unable to send MMS with image on Google's Messenger app. While some of the android device by default install this SMS app and for that when I send MMS using Intent than it's not working. The p...
Tremendous asked 11/8, 2016 at 5:39

1

Solved

Some text messages are missing and never show in the content://sms provider URI since the Samsung S7 came out. I have noticed this between multiple Samsung devices (S6 and/or S7) that are on the sa...
Strengthen asked 27/6, 2016 at 0:28

1

I'm currently querying the Android sms/mms database to retrieve all MMS messages received and sent. Everything works fine, but I noticed that the column m_size only has a value for MMS messages tha...
Kyrstin asked 5/11, 2015 at 8:7

4

An app that I am developing relies on the ability to help users send a mixture of images and text to their friends in one go. I was hoping that MFMessageComposeViewController would offer some way ...
Maintopmast asked 7/5, 2012 at 17:47

2

Solved

I'm writing an app that stores secret (encrypted+hidden using steg) information in MMS messages. Obviously I need a way to test this, in particular, sending and receiving MMS messages. I have one A...
Raybin asked 11/10, 2010 at 0:38

0

Is it possible to mix images and text and send them as MMS? UIActivityViewController will share an image with text underneath, but no matter how I order the text and images, the images always appea...
Dietetics asked 20/5, 2014 at 1:6

3

I have written a simple application to view pictures. However, after sending the picture with the common intent: Intent shareIntent = new Intent(); shareIntent.setAction(Intent.ACTION_SEND); sh...
Eucalyptol asked 12/2, 2014 at 2:48

1

Solved

So this video Android 4.4 SMS APIs from #DevBytes explains the recent changes to the SMS APIs in KitKat. They also provide a link with a sample project. http://goo.gl/uQ3Nih They suggest that you ...
Processional asked 13/2, 2014 at 7:53

3

I'd like to stream a mms:// url to my iPhone app, but so far information on the topic is hard to come by. I know there are a couple apps out there that can do it already (FStream, WunderRadio, Tune...
Nutritious asked 10/8, 2009 at 19:23

2

Solved

I tried to get all messages by thread id with uri:content://mms-sms/conversations/{threadId}, but it doesn't seem work and throws exceptions:          java.lang.NullPointerException          at an...
Declared asked 22/2, 2013 at 8:28

2

Please let me know is there any way to send MMS using MM7 protocol in Java? If there is a free API to generate the appropriate SOAP message please let me know it too. I'm in a dead end situation a...
Tripinnate asked 30/7, 2011 at 2:34

3

Solved

I want to send an MMS programmatically I used the following code for it Intent sendIntent1 = new Intent(Intent.ACTION_SEND); try { sendIntent1.setType("text/x-vcard"); sendIntent1.putExtra(...
Lili asked 13/5, 2013 at 9:9

4

Solved

I would like to compose a message from my app which I can include a photo, for example: I entered my album in the IPhone and open a photo I can click on option and then on MMS tab and the photo wil...
Revelry asked 7/6, 2011 at 8:57

© 2022 - 2024 — McMap. All rights reserved.