Posts

Showing posts with the label Sms

Android - "Converting To Multimedia Message" When Forwarding Large SMS

Answer : This was fixed in Froyo. Anything over 3*160 (480 characters) will convert to an MMS prior to Froyo. You do have a couple options. Use a 3rd Party Messaging App, like Handcent, for example. See if you are able to install this "Hack" Root your phone and flash a Froyo Rom Wait for a Froyo update from Samsung Edit: Some additional information Anything over 160 characters, technically, is no longer an SMS. The stock Messaging app, and others too, allow for "longer" messages but it is just splitting up the messages in to 160 characters. In Eclair (Android 2.1) a message will be converted to an MMS after it exceeds 480 characters. At that point, the default Messaging app will no longer split up the messages, instead it just sends it as one MMS. If you are using a 3rd party messaging application and find that you are still being charged the MMS rate, it may be that your carrier is grouping messages that come through "at the same time". Use Handcent an...

Android: How To Send Message Programmatically By Using WhatsApp, WeChat?

Answer : I got the Solution.. Here I am posting the answer so that it may help other people who may have same doubt.. For Share through any application... public void sendAppMsg(View view) { Intent intent = new Intent(Intent.ACTION_SEND); intent.setType("text/plain"); String text = " message you want to share.."; // change with required application package intent.setPackage("PACKAGE NAME OF THE APPLICATION"); if (intent != null) { intent.putExtra(Intent.EXTRA_TEXT, text);// startActivity(Intent.createChooser(intent, text)); } else { Toast.makeText(this, "App not found", Toast.LENGTH_SHORT) .show(); } } Note : change *PACKAGE NAME OF THE APPLICATION as per your requirement like Example : USE //Whatsapp intent.setPackage("com.whatsapp");` //Linkedin intent.setPackage("com.linkedin.android"); //Twitter intent.setPackage(...

Connect The SMS Send Log To The SMSMessageTracking Data View

Answer : The short answer is that currently there is no way to accomplish this and there is no existing effort on SFMC end to correct this. The best you can do is soft matches on data and leave open the risk of potential data corruption due to mismatched records. I created an 'idea' in the Trailblazer community - please add support to this and hopefully we can get some movement to resolve this issue.