Did you check the AndroidManifest.xml file in your project?
To fix this issue, you may need to add the android:exported attribute to the SplashActivity in your AndroidManifest.xml file.
- Navigate to your project’s AndroidManifest.xml file.
- Find the
<activity>tag for theSplashActivity. - Add the
android:exportedattribute with a value oftrueto theSplashActivitytag, like this:
<activity android:name="com.epicgames.ue4.SplashActivity"
android:exported="true"
android:theme="@style/SplashTheme">
- Save the AndroidManifest.xml file and repackage your project. This should resolve the parsing error and allow you to install your APK file without any issues.