react-native-audio-recorder-player icon indicating copy to clipboard operation
react-native-audio-recorder-player copied to clipboard

I'm doing thisI did like this its start recording in the android 13 but i did not get path of recorded file could you tell way to get path and need to play of the recorded file

Open abduldeveloper opened this issue 11 months ago • 0 comments

          I'm doing this
export const atLeastAndroid13 = (): boolean => {
  return Platform.OS === 'android' && Platform.Version >= 33;
};

 const permissions = atLeastAndroid13()
          ? [PERMISSIONS.ANDROID.RECORD_AUDIO]
          : [
              PERMISSIONS.ANDROID.RECORD_AUDIO,
              PERMISSIONS.ANDROID.WRITE_EXTERNAL_STORAGE,
              PERMISSIONS.ANDROID.READ_EXTERNAL_STORAGE,
            ];

 const res = await checkMultiple(permissions);

Originally posted by @MorganTrudeau in https://github.com/hyochan/react-native-audio-recorder-player/issues/548#issuecomment-1719867105

abduldeveloper avatar Sep 18 '23 08:09 abduldeveloper