{"id":49281802,"url":"https://github.com/dikshadamahe/veil-android","last_synced_at":"2026-04-25T19:01:13.224Z","repository":{"id":352965830,"uuid":"1217181128","full_name":"dikshadamahe/veil-android","owner":"dikshadamahe","description":"Minimal Android streaming client with a self-hosted resolver stack.","archived":false,"fork":false,"pushed_at":"2026-04-24T21:57:17.000Z","size":2656,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-24T23:29:17.956Z","etag":null,"topics":["android","android-tv","dart","express","flutter","flutter-animate","go-router","hive","media-kit","movie-app","nodejs","oracle-cloud","proxy","riverpod","sse","streaming","streaming-aggregator","tmdb","tv-shows","video-player"],"latest_commit_sha":null,"homepage":"","language":"Dart","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dikshadamahe.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-04-21T16:16:23.000Z","updated_at":"2026-04-24T21:57:01.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/dikshadamahe/veil-android","commit_stats":null,"previous_names":["dikshadamahe/pstream-android","dikshadamahe/veil-android"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/dikshadamahe/veil-android","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dikshadamahe%2Fveil-android","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dikshadamahe%2Fveil-android/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dikshadamahe%2Fveil-android/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dikshadamahe%2Fveil-android/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dikshadamahe","download_url":"https://codeload.github.com/dikshadamahe/veil-android/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dikshadamahe%2Fveil-android/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32273223,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-25T18:29:39.964Z","status":"ssl_error","status_checked_at":"2026-04-25T18:29:32.149Z","response_time":59,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["android","android-tv","dart","express","flutter","flutter-animate","go-router","hive","media-kit","movie-app","nodejs","oracle-cloud","proxy","riverpod","sse","streaming","streaming-aggregator","tmdb","tv-shows","video-player"],"created_at":"2026-04-25T19:01:12.231Z","updated_at":"2026-04-25T19:01:13.220Z","avatar_url":"https://github.com/dikshadamahe.png","language":"Dart","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Veil\n\n![Veil logo](logo.png)\n\nMinimal Android streaming client with a self-hosted resolver stack.\n\nVeil pulls metadata from TMDB, resolves third-party streams through your own backend, and plays them in-app. It is an aggregator only. It does not host media and does not act as a CDN.\n\n## Stack\n\n- Flutter 3.x\n- Dart\n- Riverpod\n- go_router\n- Hive\n- media_kit\n- Node.js 20\n- Express\n- `@p-stream/providers`\n\n## Project Layout\n\n```text\nbackend/providers-api/   Node service for /health, /scrape, /scrape/stream\nandroid/                 Flutter Android host app\nlib/                     Flutter application code\ntest/                    Flutter tests\nlogo.png                 Brand mark used in README and app icon assets\n```\n\n## Backend\n\n```text\nVeil app -\u003e providers-api :3001 -\u003e simple-proxy :3000 -\u003e streaming CDNs\n            \\-\u003e TMDB API\n```\n\n`providers-api` lives in this repo under `backend/providers-api`.\n\n`simple-proxy` is expected to run separately on the VM and is based on:\n`https://github.com/xp-technologies-dev/simple-proxy`\n\nThe providers dependency is installed from:\n`https://github.com/xp-technologies-dev/providers`\n\n## Local Backend Setup\n\nFrom `backend/providers-api`:\n\n```bash\npnpm install\npnpm start\n```\n\nDefault port is `3001`.\n\nHealth check:\n\n```bash\ncurl http://127.0.0.1:3001/health\n```\n\nExample scrape request:\n\n```bash\ncurl \"http://127.0.0.1:3001/scrape?type=movie\u0026tmdbId=550\u0026title=Fight%20Club\u0026year=1999\"\n```\n\n## Android Build\n\nThe app expects runtime defines for:\n\n- `ORACLE_URL`\n- `TMDB_TOKEN`\n\nExample release build:\n\n```bash\nflutter build apk --release \\\n  --dart-define=ORACLE_URL=http://YOUR_VM_IP:3001 \\\n  --dart-define=TMDB_TOKEN=YOUR_TMDB_READ_TOKEN\n```\n\n## Notes\n\n- The package import name remains `@p-stream/providers`.\n- Upstream docs may still reference older `p-stream/*` repos, but active code references should use `xp-technologies-dev/*`.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdikshadamahe%2Fveil-android","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdikshadamahe%2Fveil-android","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdikshadamahe%2Fveil-android/lists"}