2021-12-09 18:01:40 +05:30
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2022-05-12 21:49:52 +05:30
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
2021-12-12 17:38:23 +05:30
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
2021-12-16 03:54:40 +05:30
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
2022-02-27 00:27:05 +05:30
|
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
2022-02-27 23:21:17 +05:30
|
|
|
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
|
2022-02-27 00:27:05 +05:30
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
2022-03-31 23:04:19 +05:30
|
|
|
<uses-permission android:name="android.permission.MANAGE_EXTERNAL_STORAGE"/>
|
2022-03-03 12:08:36 +05:30
|
|
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE"/>
|
2021-12-09 18:01:40 +05:30
|
|
|
<application
|
|
|
|
android:allowBackup="true"
|
2022-01-28 22:40:32 +05:30
|
|
|
android:icon="@mipmap/ic_libretube"
|
2021-12-09 18:01:40 +05:30
|
|
|
android:label="@string/app_name"
|
2022-01-28 22:47:02 +05:30
|
|
|
android:roundIcon="@mipmap/ic_libretube_round"
|
2021-12-09 18:01:40 +05:30
|
|
|
android:supportsRtl="true"
|
2022-05-20 03:49:11 +05:30
|
|
|
android:theme="@style/Theme.MY"
|
2021-12-14 21:45:53 +05:30
|
|
|
android:name=".myApp"
|
2021-12-16 03:54:40 +05:30
|
|
|
android:networkSecurityConfig="@xml/network_security_config"
|
2022-02-05 21:10:29 +05:30
|
|
|
android:largeHeap="true"
|
2022-03-03 12:08:36 +05:30
|
|
|
android:requestLegacyExternalStorage="true"
|
2021-12-14 21:45:53 +05:30
|
|
|
>
|
2021-12-12 17:38:23 +05:30
|
|
|
<activity
|
|
|
|
android:name=".Player"
|
|
|
|
android:exported="false"
|
2021-12-14 21:45:53 +05:30
|
|
|
android:theme="@style/Theme.AppCompat.Light.NoActionBar"
|
|
|
|
android:configChanges="orientation|screenSize"
|
2021-12-12 17:38:23 +05:30
|
|
|
/>
|
2022-05-11 01:35:15 +05:30
|
|
|
<activity
|
|
|
|
android:name=".SettingsActivity"
|
|
|
|
android:label="@string/settings"
|
|
|
|
android:parentActivityName=".MainActivity" />
|
2021-12-09 18:01:40 +05:30
|
|
|
<activity
|
|
|
|
android:name=".MainActivity"
|
2021-12-14 21:45:53 +05:30
|
|
|
android:exported="true"
|
2022-05-14 16:08:28 +05:30
|
|
|
android:supportsPictureInPicture="true"
|
|
|
|
android:configChanges="screenSize|smallestScreenSize|screenLayout|orientation"
|
2022-02-05 21:10:29 +05:30
|
|
|
android:hardwareAccelerated="true"
|
2022-02-13 17:23:04 +05:30
|
|
|
android:screenOrientation="portrait"
|
2021-12-14 21:45:53 +05:30
|
|
|
>
|
2021-12-09 18:01:40 +05:30
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
2022-03-14 19:40:14 +05:30
|
|
|
<!-- youtube -->
|
|
|
|
<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="youtube.com" />
|
|
|
|
<data android:host="m.youtube.com" />
|
|
|
|
<data android:host="www.youtube.com" />
|
|
|
|
<data android:host="music.youtube.com" />
|
|
|
|
<!-- video prefix -->
|
|
|
|
<data android:pathPrefix="/v/" />
|
|
|
|
<data android:pathPrefix="/embed/" />
|
|
|
|
<data android:pathPrefix="/watch" />
|
2022-03-14 23:58:44 +05:30
|
|
|
<!--<data android:pathPrefix="/attribution_link" />-->
|
2022-03-14 19:40:14 +05:30
|
|
|
<data android:pathPrefix="/shorts/" />
|
|
|
|
<!-- channel prefix -->
|
|
|
|
<data android:pathPrefix="/channel/" />
|
|
|
|
<data android:pathPrefix="/user/" />
|
|
|
|
<data android:pathPrefix="/c/" />
|
|
|
|
<!-- playlist prefix -->
|
|
|
|
<data android:pathPrefix="/playlist" />
|
|
|
|
</intent-filter>
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
<action android:name="android.media.action.MEDIA_PLAY_FROM_SEARCH" />
|
|
|
|
<action android:name="android.nfc.action.NDEF_DISCOVERED" />
|
|
|
|
|
|
|
|
<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:pathPrefix="/" />
|
|
|
|
</intent-filter>
|
|
|
|
<!-- Invidious filter -->
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
<action android:name="android.media.action.MEDIA_PLAY_FROM_SEARCH" />
|
|
|
|
<action android:name="android.nfc.action.NDEF_DISCOVERED" />
|
|
|
|
|
|
|
|
<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="tubus.eduvid.org" />
|
|
|
|
<data android:host="invidio.us" />
|
|
|
|
<data android:host="dev.invidio.us" />
|
|
|
|
<data android:host="www.invidio.us" />
|
|
|
|
<data android:host="redirect.invidious.io" />
|
|
|
|
<data android:host="invidious.snopyta.org" />
|
|
|
|
<data android:host="yewtu.be" />
|
|
|
|
<data android:host="tube.connect.cafe" />
|
|
|
|
<data android:host="invidious.kavin.rocks" />
|
|
|
|
<data android:host="invidious-us.kavin.rocks" />
|
|
|
|
<data android:host="invidious.site" />
|
|
|
|
<data android:host="vid.mint.lgbt" />
|
|
|
|
<data android:host="invidiou.site" />
|
|
|
|
<data android:host="invidious.fdn.fr" />
|
|
|
|
<data android:host="invidious.048596.xyz" />
|
|
|
|
<data android:host="invidious.zee.li" />
|
|
|
|
<data android:host="vid.puffyan.us" />
|
|
|
|
<data android:host="ytprivate.com" />
|
|
|
|
<data android:host="invidious.namazso.eu" />
|
|
|
|
<data android:host="invidious.silkky.cloud" />
|
|
|
|
<data android:host="invidious.exonip.de" />
|
|
|
|
<data android:host="inv.riverside.rocks" />
|
|
|
|
<data android:host="invidious.blamefran.net" />
|
|
|
|
<data android:host="invidious.moomoo.me" />
|
|
|
|
<data android:host="ytb.trom.tf" />
|
|
|
|
<data android:host="yt.cyberhost.uk" />
|
|
|
|
<data android:host="y.com.cm" />
|
|
|
|
<data android:pathPrefix="/" />
|
|
|
|
</intent-filter>
|
2022-03-14 23:58:44 +05:30
|
|
|
<!-- Piped filter -->
|
2022-03-14 19:40:14 +05:30
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
<action android:name="android.media.action.MEDIA_PLAY_FROM_SEARCH" />
|
|
|
|
<action android:name="android.nfc.action.NDEF_DISCOVERED" />
|
|
|
|
<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="piped.tokhmi.xyz" />
|
|
|
|
<data android:host="piped.kavin.rocks" />
|
|
|
|
<data android:host="piped.silkky.cloud" />
|
|
|
|
<data android:host="piped.silkky.cloud" />
|
|
|
|
<data android:host="piped.mint.lgbt" />
|
|
|
|
<data android:host="il.ax" />
|
|
|
|
<data android:pathPrefix="/" />
|
|
|
|
</intent-filter>
|
2021-12-09 18:01:40 +05:30
|
|
|
</activity>
|
2022-03-03 12:08:36 +05:30
|
|
|
<service
|
|
|
|
android:name=".DownloadService"
|
|
|
|
android:enabled="true"
|
|
|
|
android:exported="false" />
|
2021-12-09 18:01:40 +05:30
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|