v3.2.2: updated target Android SDK to 35, with an opt-out for now

This commit is contained in:
Evan Debenham
2025-08-19 12:44:32 -04:00
parent aa1d403ea5
commit 00672f415b
3 changed files with 12 additions and 4 deletions

View File

@@ -22,7 +22,7 @@
<application
android:icon="@mipmap/ic_launcher"
android:label="${appName}"
android:theme="@android:style/Theme.Black.NoTitleBar"
android:theme="@style/Theme"
android:appCategory="game"
android:isGame="true"
android:resizeableActivity="true"

View File

@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="Theme" parent="@android:style/Theme.Black.NoTitleBar">
<item name="android:windowOptOutEdgeToEdgeEnforcement">true</item>
</style>
</resources>