Cannot access native features of Android 10 and above phones if Android SDK level is 29

We have an ionic V3 android application having features such as download files, push messages and live video/audio recording which perfectly running with Android SDK level 28 on all Android version phones. As per the new norms of Google play store, we have updated Android SDK level to 29. Since then download files and live video/audio recording is not working with Android 10 and above phones.
Is there any solution for this issue?.

Add this in androidmanifest.xml

android:requestLegacyExternalStorage="true"

Thanks @indraraj26 . When I added
android:requestLegacyExternalStorage=“true”, I got an another error
attribute android:requestLegacyExternalStorage not found,
I just add in config.xml and it perfectly built.

@priyankaprakasan can you please share what you added in androidmanifest.xml and config.xml file?