Skip to content

Commit

Permalink
Increase attempts to start AudioRecord
Browse files Browse the repository at this point in the history
Making the shell app foreground (specific for Android 11) may take more
than 300ms on some devices, so increase the number of attempts from 3 to
5 (separated by 100ms).

Fixes #4147 <#4147>
Refs #3796 <#3796>
Refs 02f4ff7
  • Loading branch information
rom1v committed Jul 7, 2023
1 parent fe6e9ac commit 01d785d
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -118,7 +118,7 @@ public void start() throws AudioCaptureForegroundException {
if (Build.VERSION.SDK_INT == Build.VERSION_CODES.R) {
startWorkaroundAndroid11();
try {
tryStartRecording(3, 100);
tryStartRecording(5, 100);
} finally {
stopWorkaroundAndroid11();
}
Expand Down

0 comments on commit 01d785d

Please sign in to comment.