Hi @User1810 , Seán here from the Intercom engineering support team 🔧
I think this crash is occuring because MediaMetadataRetriever.close() was only added in Android API level 29 (Android 10), but the SDK is trying to call it on older Android versions, causing a NoSuchMethodError.
The simplest and most reliable solution (if this is the issue) is to replace all MediaMetadataRetriever.close() calls with MediaMetadataRetriever.release(), which is available on all Android API levels and provides identical functionality.
// Replace this (problematic):
retriever.close()
// With this (compatible):
retriever.release()
Hope this helps! Let me know if the issue still persists after this change.