2020-03-16 15:41:57 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-04-03 16:40:54 +00:00
|
|
|
<manifest
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2020-05-22 10:49:11 +00:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2020-04-09 17:31:13 +00:00
|
|
|
package="com.vanced.manager">
|
|
|
|
|
2020-04-15 13:35:15 +00:00
|
|
|
<uses-permission android:name="android.permission.REQUEST_DELETE_PACKAGES" />
|
2020-05-20 18:13:23 +00:00
|
|
|
<uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES" />
|
2020-04-19 17:21:40 +00:00
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
2020-06-30 10:44:04 +00:00
|
|
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
|
2020-03-16 15:41:57 +00:00
|
|
|
|
|
|
|
<application
|
2020-06-21 19:24:14 +00:00
|
|
|
android:name=".core.App"
|
2020-06-20 15:11:24 +00:00
|
|
|
android:allowBackup="false"
|
|
|
|
android:fullBackupContent="false"
|
2020-03-16 15:41:57 +00:00
|
|
|
android:icon="@mipmap/ic_launcher"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
2020-05-22 10:49:11 +00:00
|
|
|
android:supportsRtl="true"
|
2020-06-20 15:42:05 +00:00
|
|
|
tools:ignore="UnusedAttribute"
|
|
|
|
tools:replace="android:allowBackup">
|
2020-05-22 10:49:11 +00:00
|
|
|
|
2020-03-16 15:41:57 +00:00
|
|
|
<activity
|
2020-04-09 17:31:13 +00:00
|
|
|
android:name=".ui.core.SplashScreenActivity"
|
2020-04-03 16:40:54 +00:00
|
|
|
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-04-03 16:40:54 +00:00
|
|
|
|
2020-03-16 15:41:57 +00:00
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
2020-04-30 07:49:28 +00:00
|
|
|
|
|
|
|
<meta-data
|
|
|
|
android:name="android.app.shortcuts"
|
|
|
|
android:resource="@xml/shortcuts" />
|
|
|
|
|
2020-04-03 16:40:54 +00:00
|
|
|
</activity>
|
|
|
|
<activity
|
|
|
|
android:name=".ui.MainActivity"
|
2020-06-23 21:01:51 +00:00
|
|
|
android:label="@string/app_name" />
|
2020-04-03 16:40:54 +00:00
|
|
|
|
2020-03-16 15:41:57 +00:00
|
|
|
<meta-data
|
|
|
|
android:name="preloaded_fonts"
|
|
|
|
android:resource="@array/preloaded_fonts" />
|
2020-04-03 16:40:54 +00:00
|
|
|
|
2020-05-21 16:47:53 +00:00
|
|
|
<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>
|
|
|
|
|
2020-05-25 13:45:10 +00:00
|
|
|
<service android:name=".core.installer.SplitInstallerService" />
|
2020-06-01 16:38:31 +00:00
|
|
|
<service android:name=".core.installer.RootSplitInstallerService" />
|
2020-06-29 19:20:09 +00:00
|
|
|
<service android:name=".core.installer.SplitInstaller" />
|
2020-06-21 19:24:14 +00:00
|
|
|
<service android:name=".core.installer.AppUninstallerService" />
|
2020-06-22 12:11:57 +00:00
|
|
|
<service android:name=".core.installer.AppInstallerService" />
|
2020-06-29 19:20:09 +00:00
|
|
|
<service android:name=".core.installer.AppInstaller" />
|
2020-06-25 14:22:33 +00:00
|
|
|
<service android:name=".core.downloader.VancedDownloadService" />
|
|
|
|
<service android:name=".core.downloader.MicrogDownloadService" />
|
2020-05-25 13:45:10 +00:00
|
|
|
|
2020-03-16 15:41:57 +00:00
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|