2022-02-25 00:51:40 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2022-03-19 20:05:52 +00:00
|
|
|
package="com.Frontesque.vuetube">
|
2022-02-25 00:51:40 +00:00
|
|
|
|
|
|
|
<application
|
|
|
|
android:allowBackup="true"
|
|
|
|
android:icon="@mipmap/ic_launcher"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
|
|
|
android:supportsRtl="true"
|
2022-04-07 00:23:01 +00:00
|
|
|
android:theme="@style/AppTheme"
|
|
|
|
android:requestLegacyExternalStorage="true">
|
2022-02-25 00:51:40 +00:00
|
|
|
|
|
|
|
<activity
|
|
|
|
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|smallestScreenSize|screenLayout|uiMode"
|
2022-03-19 20:05:52 +00:00
|
|
|
android:name="com.Frontesque.vuetube.MainActivity"
|
2022-02-25 00:51:40 +00:00
|
|
|
android:label="@string/title_activity_main"
|
|
|
|
android:theme="@style/AppTheme.NoActionBarLaunch"
|
2022-03-20 15:54:26 +00:00
|
|
|
android:launchMode="singleTask"
|
|
|
|
android:resizeableActivity="true"
|
|
|
|
android:supportsPictureInPicture="true">
|
2022-02-25 00:51:40 +00:00
|
|
|
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
2022-04-01 01:02:08 +00:00
|
|
|
<category android:name="android.intent.category.LAUNCHER" />>
|
|
|
|
</intent-filter>
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
|
|
|
|
|
|
<data android:scheme="http" />
|
|
|
|
<data android:scheme="https" />
|
|
|
|
|
|
|
|
<data android:host="youtu.be" />
|
|
|
|
<data android:host="m.youtube.com" />
|
|
|
|
<data android:host="youtube.com" />
|
|
|
|
<data android:host="www.youtube.com" />
|
|
|
|
<data android:pathPattern="/.*" />
|
2022-02-25 00:51:40 +00:00
|
|
|
</intent-filter>
|
|
|
|
|
|
|
|
</activity>
|
|
|
|
|
|
|
|
<provider
|
|
|
|
android:name="androidx.core.content.FileProvider"
|
|
|
|
android:authorities="${applicationId}.fileprovider"
|
|
|
|
android:exported="false"
|
|
|
|
android:grantUriPermissions="true">
|
|
|
|
<meta-data
|
|
|
|
android:name="android.support.FILE_PROVIDER_PATHS"
|
|
|
|
android:resource="@xml/file_paths"></meta-data>
|
|
|
|
</provider>
|
|
|
|
</application>
|
|
|
|
|
|
|
|
<!-- Permissions -->
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
2022-04-11 01:00:42 +00:00
|
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
|
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
|
|
|
|
2022-02-25 00:51:40 +00:00
|
|
|
</manifest>
|