You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2026-01-02 19:01:36 +00:00
- Regenerates the `GodotAppMainTheme` and `GodotAppSplashTheme` during Android export. Any manual changes to these styles will be cleared and replaced with default theme attributes. - Adds a new export option `gradle_build/custom_theme_attributes` for injecting custom theme attributes directly via the export window, avoiding the need to manually modify themes.xml.
18 lines
987 B
XML
18 lines
987 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<resources>
|
|
<!-- GodotAppMainTheme is auto-generated during export. Manual changes will be overwritten.
|
|
To add custom attributes, use the "gradle_build/custom_theme_attributes" Android export option. -->
|
|
<style name="GodotAppMainTheme" parent="@android:style/Theme.DeviceDefault.NoActionBar">
|
|
<item name="android:windowDrawsSystemBarBackgrounds">false</item>
|
|
<item name="android:windowSwipeToDismiss">false</item>
|
|
</style>
|
|
|
|
<!-- GodotAppSplashTheme is auto-generated during export. Manual changes will be overwritten.
|
|
To add custom attributes, use the "gradle_build/custom_theme_attributes" Android export option. -->
|
|
<style name="GodotAppSplashTheme" parent="Theme.SplashScreen">
|
|
<item name="android:windowSplashScreenBackground">@mipmap/icon_background</item>
|
|
<item name="windowSplashScreenAnimatedIcon">@mipmap/icon_foreground</item>
|
|
<item name="postSplashScreenTheme">@style/GodotAppMainTheme</item>
|
|
</style>
|
|
</resources>
|