-
Notifications
You must be signed in to change notification settings - Fork 60
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Start apps #5
Comments
It is possible judging from the Android TV remote app. POST activities/launch But I get a Bad Request 400, when posting it like this. |
Anyone got any luck running apps remotely? |
Any luck @fliphess ? |
I was thinking about deploying some kind of web service onto TV that would run those intents. Over HTTP. |
Hey, I managed to figure this out, you need to send the whole intent to the endpoint. To fetch all the available applications, do a For example, the application for Finnish channel MTV is presented like this in the {
"id": "fi.mtvkatsomo.androidtv.MainActivity-fi.mtvkatsomo",
"type": "app",
"intent": {
"action": "empty",
"component": {
"className": "fi.mtvkatsomo.androidtv.MainActivity",
"packageName": "fi.mtvkatsomo"
}
},
"order": 0,
"label": "MTV Katsomo"
} To change to Katsomo app, {
"intent": {
"action": "empty",
"component": {
"className": "fi.mtvkatsomo.androidtv.MainActivity",
"packageName": "fi.mtvkatsomo"
}
}
} |
Amazing! Thanks so much 😁 |
Started playing around with this again |
Oh, sorry. That was a typo in my previous message. |
Is it possible to start installed apps with this?
The text was updated successfully, but these errors were encountered: