Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9805d60d authored by Mohammed Althaf T's avatar Mohammed Althaf T 😊
Browse files

Hide app splash screen

parent c4b583eb
Loading
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -35,7 +35,8 @@

        <activity
            android:name=".ui.player.PwaActivity"
            android:exported="true">
            android:exported="true"
            android:theme="@style/AppTheme.NoSplash">
            <intent-filter>
                <action android:name="foundation.e.blisslauncher.VIEW_PWA" />
                <category android:name="android.intent.category.DEFAULT" />
+5 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">
    <solid android:color="@android:color/transparent" />
</shape>
+7 −0
Original line number Diff line number Diff line
<resources>
    <style name="AppTheme.NoSplash" parent="AppTheme">
        <item name="android:windowSplashScreenAnimatedIcon">@drawable/transparent_splash_icon</item>
        <item name="android:windowSplashScreenBackground">@android:color/transparent</item>
        <item name="android:windowSplashScreenAnimationDuration">0</item>
    </style>
</resources>
+2 −0
Original line number Diff line number Diff line
@@ -6,4 +6,6 @@
        <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
        <item name="colorAccent">@color/colorAccent</item>
    </style>

    <style name="AppTheme.NoSplash" parent="AppTheme" />
</resources>
 No newline at end of file