Merge "Allow ogg files to be selected as ringtones" into oc-dev

am: d44afb99c8

Change-Id: Ia99142562cd97ad5aeec2dfa40a63d80657a2c0d
This commit is contained in:
Christine Franks
2017-05-10 16:04:45 +00:00
committed by android-build-merger

View File

@@ -943,7 +943,8 @@ public class RingtoneManager {
// Sanity-check: are we actually being asked to install an audio file?
final String mimeType = mContext.getContentResolver().getType(fileUri);
if(mimeType == null || !mimeType.startsWith("audio/")) {
if(mimeType == null ||
!(mimeType.startsWith("audio/") || mimeType.equals("application/ogg"))) {
throw new IllegalArgumentException("Ringtone file must have MIME type \"audio/*\"."
+ " Given file has MIME type \"" + mimeType + "\"");
}