Using Godot 3.5 Stable
When trying to export an APK, I get the following message
Execution failed for task ':processReleaseMainManifest'.
Manifest merger failed : android:exported needs to be explicitly specified for <receiver>. Apps targeting Android 12 and higher are required to specify an explicit value for android:exported
when the corresponding component has an intent filter defined. See https://developer.android.com/guide/topics/manifest/activity-element#exported for details.
When I manually add the following to the Manifest, the same message still appears:
<receiver
android:name=".Receiver"
android:exported="false">
</receiver>
How can this be solved?