I am using flutter_inappbrowser plugin and it has a RECORD_AUDIO permission in its sample app. which is getting added in main app Manifest file. I am trying to remove it by using
<uses-permission android:name="android.permission.RECORD_AUDIO" tools:node="remove"/>
but it is not working. I am still able to see it in main app manifest file when decompiled. is there any other way to remove it from App? Thanks in advance!
Make sure to use the correct path name in the android:name attribute. The correct name for the RECORD_AUDIO method is
with no spaces.