regarding supporting RTL:
it's better to leave it to the developer, for example some developers may want to add the RecordButton at the left and they can swipe to the right, and vice versa.
so it's better to add something like this
recordView.setRTL(false//or true);
and regarding recording sound, i don't think we need to add this. suppose somebody wants to use other recording option using some other 3rd party libs, in that case they are not interested in MediaRecorder.
Hey @BilalSiddiqui , Thanks for your PR.
regarding supporting RTL: it's better to leave it to the developer, for example some developers may want to add the RecordButton at the left and they can swipe to the right, and vice versa. so it's better to add something like this
recordView.setRTL(false//or true);
and regarding recording sound, i don't think we need to add this. suppose somebody wants to use other recording option using some other 3rd party libs, in that case they are not interested in
MediaRecorder
.other than that, you did a great job, so Thanks!