Deprecated: mediaRecorder = new MediaRecorder();

4.6k Views Asked by At

Running Xlint:deprecated in android studio on my (java) application tells me that

   mediaRecorder = new MediaRecorder();

is deprecated!

What should I do?

1

There are 1 best solutions below

0
dlw On

As commented, MediaRecorder() is replaced by MediaRecorder(Context context). See https://developer.android.com/reference/android/media/MediaRecorder#summary but, as of 2022, ignore the example at the top of the page.