Is there any possible way to record an audio and upload to a server using xamarin forms. The best result I got after searching was this https://github.com/HoussemDellai/UploadFileToServer
The library used in the solution supports only Image and Video.
Thanks in advance
There are many ways realizing this feature. For recording an audio within Xamarin.Forms, you could use
Plugin.AudioRecorderto realize. Fore more you could refer the following code.For uploading file, you could use the
UploadFileToServerthat mentioned in your case. And you will get the audio file path in theAudioInputReceivedevent args.