Android .apk storage permission API-35, 34

Hello.
I wanna build my Unreal Engine 5.4.4 game on Android but when its done and i open the game its give me this error

Im using API-35 or 34
JDK-17
NDK-25
and my phone is Android-14

Try enabling Use ExternalFilesDir for UnrealGame files? in Project Settings - Platform - Android - APK Packaging.

If the problem is not solved, create a UPL file with the following code.

<root xmlns:android="http://schemas.android.com/apk/res/android">
  <androidManifestUpdates>
    <removePermission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
    <addPermission
			android:name="android.permission.WRITE_EXTERNAL_STORAGE"
			android:maxSdkVersion="18" />
  </androidManifestUpdates>
</root>