For anyone looking for a solution, here’s what I’ve found so far:
When building Android apk, Unreal generates AndroidManifest.xml
under Intermediate/Android/arm64
. Inside that file, you can check the Android activity declarations. Both SplashActivity
and GameActivity
is using android:theme="@style/UnrealSplashTheme"
.
There are two options to modify that:
- Update AndroidManifest via UPL
Got inspired from this post. I added this to the UPL.xml file.
<androidManifestUpdates>
<removeAttribute tag="activity" name="android:theme"/>
<addAttribute tag="activity" name="android:theme" value="@style/Theme.AppCompat.NoActionBar"/>
</androidManifestUpdates>
- Override styles.xml file
During the build process, Unreal will actually copy anything underBuild/Android/
toIntermediate/Android/arm64
and override template files. For example, if you set custom App icons, you’ll see it added toBuild/Android/res/drawable
and then copied over toIntermediate
.
So similarly, you can createBuild/Android/res/values/styles.xml
andBuild/Android/res/values-land/styles.xml
to override the styles.xml file. Editing the files inIntermediate
folder doesn’t work as they always gets regenerated in the build process! I would just copy files fromIntermediate
and modify them. This gives you more flexibility to control the style.
That being said, I did encounter another issue after changing theme from @style/Theme.Black.AppCompat.NoActionBar.FullScreen
to @style/Theme.AppCompat.NoActionBar
. The touch positions are off. They don’t account for the action bar or navigation bar. If anyone has ideas how to fix this, that would be great!