Introduces GitHub issue and PR templates, contributing and security documentation. Adds Android 12+ splash screen support, updates theming and status color handling, and improves MaskedEmail card/detail UI with shared transitions and accessibility. Updates dependencies for Compose and Material3, and enhances README with detailed setup and contribution instructions.
14 lines
712 B
XML
14 lines
712 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<resources>
|
|
<style name="Theme.FastMask" parent="android:Theme.Material.Light.NoActionBar">
|
|
<item name="android:statusBarColor">@android:color/transparent</item>
|
|
<item name="android:navigationBarColor">@android:color/transparent</item>
|
|
<item name="android:windowLightStatusBar">true</item>
|
|
</style>
|
|
|
|
<style name="Theme.FastMask.Splash" parent="Theme.SplashScreen">
|
|
<item name="windowSplashScreenBackground">@color/splash_background</item>
|
|
<item name="windowSplashScreenAnimatedIcon">@drawable/ic_launcher_foreground</item>
|
|
<item name="postSplashScreenTheme">@style/Theme.FastMask</item>
|
|
</style>
|
|
</resources>
|