53 lines
1.6 KiB
XML
53 lines
1.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
<application
|
|
android:allowBackup="true"
|
|
android:enableOnBackInvokedCallback="true"
|
|
android:icon="@mipmap/ic_launcher"
|
|
android:label="@string/app_name"
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
|
android:supportsRtl="true"
|
|
android:theme="@style/Theme.YaYa">
|
|
|
|
<!--
|
|
SplashActivity 已临时禁用,不再作为应用入口。
|
|
如需恢复启动页,将下面的 MAIN/LAUNCHER intent-filter 从 MainActivity
|
|
移回 SplashActivity 即可。
|
|
-->
|
|
<activity
|
|
android:name=".SplashActivity"
|
|
android:exported="true"
|
|
android:theme="@style/Theme.YaYa.Splash" />
|
|
|
|
<activity
|
|
android:name=".MainActivity"
|
|
android:exported="true">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
<activity
|
|
android:name=".AboutActivity"
|
|
android:exported="false" />
|
|
|
|
<activity
|
|
android:name=".DogParkActivity"
|
|
android:exported="false" />
|
|
|
|
<activity
|
|
android:name=".LicensesActivity"
|
|
android:exported="false" />
|
|
|
|
<activity
|
|
android:name=".ToolsActivity"
|
|
android:exported="false" />
|
|
|
|
<activity
|
|
android:name=".DateCheckerActivity"
|
|
android:exported="false" />
|
|
</application>
|
|
|
|
</manifest> |