android: add style to test apk's

This commit is contained in:
Anonymous Maarten
2025-01-21 20:20:17 +01:00
parent 535d80bade
commit efa6e7aece
2 changed files with 9 additions and 2 deletions

View File

@@ -43,8 +43,8 @@
android:roundIcon="@mipmap/sdl-test_round"
android:label="@string/label"
android:supportsRtl="true"
android:hardwareAccelerated="true"
tools:targetApi="31">
android:theme="@style/AppTheme"
android:hardwareAccelerated="true">
<activity
android:name="@ANDROID_MANIFEST_PACKAGE@.SDLTestActivity"
android:exported="true"

View File

@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="android:Theme.NoTitleBar.Fullscreen">
<!-- Customize your theme here. -->
</style>
</resources>