feat(splash): make SplashActivity the launcher entry

This commit is contained in:
xfy 2026-06-16 12:11:53 +08:00
parent 423e68ec19
commit fab3c2d763

View File

@ -10,16 +10,19 @@
android:supportsRtl="true"
android:theme="@style/Theme.YaYa">
<activity
android:name=".SplashActivity"
android:exported="true"
android:name=".MainActivity"
android:theme="@style/Theme.YaYa.Starting">
android:theme="@style/Theme.YaYa.Splash">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".MainActivity"
android:exported="true" />
<activity
android:name=".AboutActivity"
android:exported="false" />