From 832a39a96a683247b2293e167c55226cd4c755aa Mon Sep 17 00:00:00 2001 From: Z User Date: Mon, 25 May 2026 02:14:42 +0000 Subject: [PATCH] feat: add external player intent filter for HTTP/HTTPS URLs Allow CloudStream to appear in Android's 'Open with' menu when clicking video/audio/HLS URLs from other apps like Stremio or browsers. - Add 3 intent-filters to DownloadedPlayerActivity for video/*, HLS (x-mpegURL, vnd.apple.mpegurl), and audio/* MIME types over http/https schemes - Route http/https URIs through playLink() instead of playUri() so network streams are handled correctly instead of being treated as local content URIs --- app/src/main/AndroidManifest.xml | 32 +++++++++++++++++++ .../ui/player/DownloadedPlayerActivity.kt | 4 +++ 2 files changed, 36 insertions(+) diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index ee4c978f2be..00f44903a62 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -135,6 +135,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +