Clean Manifest Override for Oculus?

I’m trying to make a clean “ManifestRequirementsOverride.txt” for my Oculus Quest game. My game keeps making requests for permissions I don’t use, and it’s preventing me from submitting to Oculus’s App Lab. What should a clean “ManifestRequirementsOverride.txt” contain in it? And where does the file go?

I’m finding different answers to that question all over the place and most seem outdated. Please help, thanks!

Go to the Build\Android folder, and then create a new ManifestRequirementsOverride.xml file containing the permissions you’d like to override/remove.

For Example:

<uses-sdk android:minSdkVersion="21"/>
<uses-feature android:glEsVersion="0x00030001" android:required="true" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.WAKE_LOCK"/>