Call service in a scene

Hi all,
i have a simple question:
Is it possible to call a service in a scene ?
I want to launch an app on my Android TV (Shield TV) in a scene.
I test this, but doesn’t work :

  - name: Films
    service:
    androidtv.adb_command:
      entity_id: media_player.shield_tv
      data:
        command: am start -a android.intent.action.VIEW -d -n org.xbmc.kodi/.Splash

or

  - name: Films
    entities:
      media_player.shield_tv:
        app_name: Kodi

Does the service work when you trigger it using the dev tools?

Yes it works
with:
Service:
androidtv.adb_command
Entity:
media_player.shield_tv
Service Data:

{
  "entity_id": "media_player.shield_tv",
  "command": "am start -a android.intent.action.VIEW -d -n org.xbmc.kodi/.Splash"
} 

I don’t use scenes, but their support isn’t great, though, I believe that’s changing starting with 0.97. At this point, I think to call a specific service you’d have to add a script that calls that service and then turn on the script in the scene.

Ok, i’m going to use a script.
Thank you guys!