From a834df67ae4debba9f5a3e405875e85a9087031a Mon Sep 17 00:00:00 2001 From: JosJuice Date: Wed, 4 Jun 2025 21:30:51 +0200 Subject: [PATCH] Android: Add android.hardware.microphone to manifest Google Play is now blocking distribution for Android TV unless we explicitly set the android.hardware.microphone hardware feature as android:required="false", because it's inferring android.hardware.microphone from the android.permission.RECORD_AUDIO we added for Wii Speak emulation, with android:required defaulting to true. I was under the belief that setting android:required="false" on android.permission.RECORD_AUDIO would solve this, but looking closer at the definition of , it doesn't actually support android:required attributes, so that presumably has no effect. --- Source/Android/app/src/main/AndroidManifest.xml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/Source/Android/app/src/main/AndroidManifest.xml b/Source/Android/app/src/main/AndroidManifest.xml index a14e13b135..c9cb8fcae9 100644 --- a/Source/Android/app/src/main/AndroidManifest.xml +++ b/Source/Android/app/src/main/AndroidManifest.xml @@ -13,6 +13,9 @@ + @@ -25,12 +28,8 @@ - - + +