Cannot send MMS?
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 sendPicture(final byte [] data){ final Bitmap bmp = BitmapFactory.decodeByteArray(data, 0, data.length); new Thread(new Runnable() { @Override public void run() { ApnUtils.initDefaultApns(z, new ApnUtils.OnApnFinishedListener() { //Z is just an instance variable that stores context @Override public void onFinished() { settings = Settings.get(z, true); } }); Settings settings = Settings.get(z); com.klinker