Permission requiired you must approve this premission in app settings:storage

Thank you, brother.

1 Like

to remove startup permission check, use this UPL script:

<?xml version="1.0" encoding="utf-8"?>
<root xmlns:android="http://schemas.android.com/apk/res/android">
	<trace enable="true"/>
	<androidManifestUpdates>
		<loopElements tag="meta-data">
			<setStringFromAttribute result="metaName" tag="$" name="android:name" />
			<setBoolIsEqual result="bIsStartupPermissions" arg1="$S(metaName)" arg2="com.epicgames.unreal.GameActivity.StartupPermissions" />
			<if condition="bIsStartupPermissions">
				<true>
					<removeAttribute tag="$" name="android:value"/>
					<addAttribute tag="$" name="android:value" value=""/>
				</true>
			</if>
		</loopElements>
	</androidManifestUpdates>
</root>

I worked on UE5.4.4 and this fix work, amusingly. Thank you very much :+1: