VancedManager/app/src/main/AndroidManifest.xml

43 lines
1.3 KiB
XML
Raw Normal View History

2020-03-16 15:41:57 +00:00
<?xml version="1.0" encoding="utf-8"?>
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
2020-04-04 12:31:38 +00:00
package="com.vanced.manager" >
2020-03-16 15:41:57 +00:00
<application
android:allowBackup="true"
android:fullBackupContent="true"
2020-03-16 15:41:57 +00:00
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/LightTheme.Blue">
2020-04-04 12:31:38 +00:00
2020-03-16 15:41:57 +00:00
<activity
android:name=".SplashScreenActivity"
android:label="@string/app_name"
android:theme="@style/SplashTheme">
2020-03-16 15:41:57 +00:00
<intent-filter>
<action android:name="android.intent.action.MAIN" />
2020-03-16 15:41:57 +00:00
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
2020-04-04 12:31:38 +00:00
<activity
android:name=".ui.MainActivity"
android:label="@string/app_name">
2020-03-16 15:41:57 +00:00
</activity>
<activity
android:name=".ui.AboutActivity"
android:parentActivityName=".ui.MainActivity"
android:label="@string/app_name">
</activity>
2020-03-16 15:41:57 +00:00
<meta-data
android:name="preloaded_fonts"
android:resource="@array/preloaded_fonts" />
2020-03-16 15:41:57 +00:00
</application>
</manifest>