RON Exchange Rates v2.2

A new update is available on the market (install link).
This version comes with:
  • support for different screen resolutions (Donut)
  • removed error notifications caused by a missing internet connection
  • history caching

Send SMS using an Intent

I know this is a common topic but this solution actually worked for me.
    Intent intent = new Intent(Intent.ACTION_VIEW);
    intent.putExtra("address", "XXXXXXXXXX"); // phone number
    intent.putExtra("sms_body", "..."); // message
    intent.setType("vnd.android-dir/mms-sms");
    startActivity(intent);
It's a nice thing when you have access to source code. I'm talking about the Mms.app in this case. ;-)