klinker41 / android-smsmms

Library for easily sending SMS and MMS for Android devices
673 stars 247 forks source link

Send MMS throw new MmsException("unable to update " + uri.toString()) #148

Open userfuy opened 5 years ago

userfuy commented 5 years ago

android-smsmms/library/src/main/java/com/google/android/mms/pdu_alt/PduPersister.java line 831: if (data.length > MAX_TEXT_BODY_SIZE) { ContentValues cv2 = new ContentValues(); cv2.put(Part.TEXT, cutString(dataText, MAX_TEXT_BODY_SIZE)); if (mContentResolver.update(uri, cv2, null, null) != 1) { throw new MmsException("unable to update " + uri.toString()); } } else { throw new MmsException("unable to update " + uri.toString()); } if (data.length > MAX_TEXT_BODY_SIZE) seem wrong