2020-03-16 15:41:57 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-10-31 19:45:39 +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-09-26 17:09:01 +00:00
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
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-11-03 07:28:18 +00:00
|
|
|
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" />
|
2020-04-19 17:21:40 +00:00
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
2020-10-31 21:10:55 +00:00
|
|
|
|
2021-04-18 11:42:23 +00:00
|
|
|
<!-- is required for some Android 5.x devices -->
|
2020-10-13 14:44:33 +00:00
|
|
|
<uses-permission
|
|
|
|
android:name="android.permission.WRITE_EXTERNAL_STORAGE"
|
|
|
|
tools:ignore="ScopedStorage" />
|
2020-09-21 08:37:47 +00:00
|
|
|
|
|
|
|
<queries>
|
|
|
|
<package android:name="com.vanced.android.youtube" />
|
|
|
|
<package android:name="com.google.android.youtube" />
|
|
|
|
<package android:name="com.vanced.android.apps.youtube.music" />
|
2020-10-31 19:45:39 +00:00
|
|
|
<package android:name="com.google.android.apps.youtube.music" />
|
2020-09-21 08:37:47 +00:00
|
|
|
<package android:name="com.mgoogle.android.gms" />
|
2021-02-04 08:34:40 +00:00
|
|
|
<package android:name="com.vanced.faq" />
|
2021-01-26 07:31:05 +00:00
|
|
|
<package android:name="com.android.vending" />
|
2020-09-21 08:37:47 +00:00
|
|
|
</queries>
|
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"
|
2021-04-18 11:42:23 +00:00
|
|
|
tools:ignore="UnusedAttribute">
|
2020-05-22 10:49:11 +00:00
|
|
|
|
2020-03-16 15:41:57 +00:00
|
|
|
<activity
|
2021-04-17 09:24:06 +00:00
|
|
|
android:name=".ui.SplashScreenActivity"
|
2020-04-03 16:40:54 +00:00
|
|
|
android:label="@string/app_name"
|
2021-01-15 16:02:50 +00:00
|
|
|
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>
|
2020-10-31 19:45:39 +00:00
|
|
|
|
|
|
|
<activity
|
|
|
|
android:name=".ui.WelcomeActivity"
|
2021-04-18 11:42:23 +00:00
|
|
|
android:theme="@style/DarkTheme"/>
|
2020-10-31 19:45:39 +00:00
|
|
|
|
2020-04-03 16:40:54 +00:00
|
|
|
<activity
|
|
|
|
android:name=".ui.MainActivity"
|
2021-02-14 09:57:48 +00:00
|
|
|
android:configChanges="layoutDirection|locale|keyboardHidden|orientation|screenSize"
|
2020-10-31 19:45:39 +00:00
|
|
|
android:exported="true"
|
|
|
|
android:label="@string/app_name"
|
2021-01-15 16:02:50 +00:00
|
|
|
android:theme="@style/DarkTheme">
|
2020-11-02 14:41:39 +00:00
|
|
|
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
|
|
<data
|
2021-04-18 11:42:23 +00:00
|
|
|
android:scheme="https"
|
2021-04-19 15:50:56 +00:00
|
|
|
android:host="api.vancedapp.com"
|
2021-04-18 11:42:23 +00:00
|
|
|
android:pathPrefix="/downloads"/>
|
2020-11-02 14:41:39 +00:00
|
|
|
|
|
|
|
</intent-filter>
|
|
|
|
|
|
|
|
</activity>
|
2020-04-03 16:40:54 +00:00
|
|
|
|
2020-05-21 16:47:53 +00:00
|
|
|
<provider
|
|
|
|
android:name="androidx.core.content.FileProvider"
|
2020-10-31 19:45:39 +00:00
|
|
|
android:authorities="${applicationId}.provider"
|
2020-05-21 16:47:53 +00:00
|
|
|
android:exported="false"
|
|
|
|
android:grantUriPermissions="true">
|
|
|
|
|
|
|
|
<meta-data
|
|
|
|
android:name="android.support.FILE_PROVIDER_PATHS"
|
|
|
|
android:resource="@xml/file_provider" />
|
|
|
|
|
|
|
|
</provider>
|
|
|
|
|
2020-08-05 16:20:19 +00:00
|
|
|
<service
|
|
|
|
android:name=".core.firebase.CloudMessaging"
|
|
|
|
android:exported="false">
|
|
|
|
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="com.google.firebase.MESSAGING_EVENT" />
|
|
|
|
</intent-filter>
|
|
|
|
|
|
|
|
</service>
|
|
|
|
|
|
|
|
<meta-data
|
|
|
|
android:name="com.google.firebase.messaging.default_notification_icon"
|
|
|
|
android:resource="@drawable/ic_stat_name" />
|
|
|
|
|
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-05-25 13:45:10 +00:00
|
|
|
|
2020-03-16 15:41:57 +00:00
|
|
|
</application>
|
|
|
|
|
2020-10-31 19:45:39 +00:00
|
|
|
</manifest>
|