-
-
Notifications
You must be signed in to change notification settings - Fork 13
Intent Launcher
knoop7 edited this page Jun 22, 2026
·
2 revisions
The Android Intent Executor allows you to remotely execute Android Intents from Home Assistant, opening apps or system settings on the Ava device.
The Intent Launcher exposes a service in Home Assistant that can execute Android Intents remotely. This lets you open apps, launch system settings, or trigger any intent-based action from HA automations.
- Go to Settings -> Device Controls -> Diagnostic Sensors
- Turn on Android Intent Executor
- Enable Show in Home Assistant to expose the service
action: esphome.device_name_launch_intent
data:
intent_uri: "spotify://"intent_uri: "spotify://com.spotify.music"
intent_uri: "intent:#Intent;action=android.settings.SETTINGS;end"
| Intent | Description |
|---|---|
spotify:// |
Open Spotify |
youtube:// |
Open YouTube |
intent:#Intent;action=android.settings.WIFI_SETTINGS;end |
Open WiFi settings |
intent:#Intent;action=android.settings.BLUETOOTH_SETTINGS;end |
Open Bluetooth settings |
intent:#Intent;action=android.settings.DISPLAY_SETTINGS;end |
Open display settings |
sensor.your_device_name_intent_launcher_status
automation:
- alias: "Open Spotify in the morning"
trigger:
- platform: time
at: "07:00:00"
action:
- service: esphome.ava_launch_intent
data:
intent_uri: "spotify://"- Check if Intent Launcher is enabled
- Check if Show in Home Assistant is enabled
- Verify the intent URI format
- Check if the target app is installed
- Ensure the app is installed on the device
- Check the correct intent URI for the app
- Some apps may use different URI schemes
Back to Home