https://github.com/jzallas/backdrop
Plays YouTube audio in the background on Android
https://github.com/jzallas/backdrop
Last synced: 3 months ago
JSON representation
Plays YouTube audio in the background on Android
- Host: GitHub
- URL: https://github.com/jzallas/backdrop
- Owner: jzallas
- License: mit
- Created: 2019-03-16T15:27:59.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-07T12:18:38.000Z (over 2 years ago)
- Last Synced: 2024-04-16T12:59:16.341Z (over 1 year ago)
- Language: Kotlin
- Homepage:
- Size: 8.14 MB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 14
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# BackDrop
[](https://github.com/jzallas/BackDrop/actions)
[](https://github.com/jzallas/BackDrop/blob/master/LICENSE)
[](https://github.com/jzallas/BackDrop/releases)Plays youtube audio in the background.

### Prerequisites
1. [node 11](https://nodejs.org/en/)### Build
Before building the application, the web resources need to be built. Run the following to build the web resources:```bash
$ cd web
$ npm ci
$ npm run build
```
### Launching
This application cannot be launched from the launcher. It can only be launched via an intent filter. So, if you try to share a url from any other application, this application should capture the accept the intent and attempt to play it in a background service.You can use adb to simulate an intent needed to launch this application:
```bash
$ export URL="url_goes_here"
$ adb shell am start -n "com.jzallas.backdrop/.MainActivity" --es "android.intent.extra.TEXT" $URL
```