mirror of
https://github.com/YTVanced/VancedManager
synced 2024-12-02 15:57:26 +00:00
70 lines
No EOL
2.7 KiB
XML
70 lines
No EOL
2.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
package="com.vanced.manager">
|
|
|
|
<uses-permission android:name="android.permission.REQUEST_DELETE_PACKAGES" />
|
|
<uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES" />
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
|
|
|
|
<application
|
|
android:name=".core.App"
|
|
android:allowBackup="false"
|
|
android:fullBackupContent="false"
|
|
android:icon="@mipmap/ic_launcher"
|
|
android:label="@string/app_name"
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
|
android:supportsRtl="true"
|
|
tools:ignore="UnusedAttribute"
|
|
tools:replace="android:allowBackup">
|
|
|
|
<activity
|
|
android:name=".ui.core.SplashScreenActivity"
|
|
android:label="@string/app_name"
|
|
android:theme="@style/SplashTheme">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
|
|
<meta-data
|
|
android:name="android.app.shortcuts"
|
|
android:resource="@xml/shortcuts" />
|
|
|
|
</activity>
|
|
<activity
|
|
android:name=".ui.MainActivity"
|
|
android:label="@string/app_name" />
|
|
|
|
<meta-data
|
|
android:name="preloaded_fonts"
|
|
android:resource="@array/preloaded_fonts" />
|
|
|
|
<provider
|
|
android:authorities="${applicationId}.provider"
|
|
android:name="androidx.core.content.FileProvider"
|
|
android:exported="false"
|
|
android:grantUriPermissions="true">
|
|
|
|
<meta-data
|
|
android:name="android.support.FILE_PROVIDER_PATHS"
|
|
android:resource="@xml/file_provider" />
|
|
|
|
</provider>
|
|
|
|
<service android:name=".core.installer.SplitInstallerService" />
|
|
<service android:name=".core.installer.RootSplitInstallerService" />
|
|
<service android:name=".core.installer.SplitInstaller" />
|
|
<service android:name=".core.installer.AppUninstallerService" />
|
|
<service android:name=".core.installer.AppInstallerService" />
|
|
<service android:name=".core.installer.AppInstaller" />
|
|
<service android:name=".core.downloader.VancedDownloadService" />
|
|
<service android:name=".core.downloader.MicrogDownloadService" />
|
|
|
|
</application>
|
|
|
|
</manifest> |