remote mapping question



So I’ve been using Kodi for about 100 years on a PC and all has worked well.
I’m making the switch from PC to a  Ugoos AM6B+ per this thread https://forum.kodi.tv/showthread.php?tid…id=3181187 and have done the setup per that guide.
I’ve copied over my working keyboard.xml file from the PC and verified the key mappings from the remote.
Most things work, but I’d love some help sorting out the last problems.

1) The “Home” button should bring me to “home”… but it’s bringing me to ‘pictures’. I have no idea why it doesn’t work.
     <key id=”6″>ActivateWindow(home)</key>

2) I can’t get Seek/small step working the way I like. Seems to follow “chapters” but I don’t want it to. I just want to jump forward or back 30sec for seek and 10 sec for small step forward or back. Again these lines work fine on the PC but not on the android box.

  <FullscreenVideo>
    <keyboard>
      <key id=”166″Seek(30)</key>  <!– Up arrow –>
      <key id=”167″>Seek(-30)</key>  <!– Down arrow –>
      <key id=”168″>SmallStepForward</key>
      <key id=”169″>SmallStepBack</key>
   </keyboard>
 </FullscreenVideo>

The whole xml looks like this:
<keymap>
  <global>
    <keyboard>
      <key id=”7″>delete</key>   <!– Red Button –>
      <key id=”6″>ActivateWindow(home)</key>   <!– Green Button –>
      <key id=”9″>showsubtitles</key>   <!– Blue Button –>
      <key id=”169″>left</key>
      <key id=”168″>right</key>
      <key id=”166″>up</key>
      <key id=”167″>down</key>
      <key id=”210″>pageup</key>
      <key id=”211″>pagedown</key>
      <key id=”50″>contextmenu</key>   <!– Guide –>
      <key id=”216″>back</key>
     </keyboard>
   </global>
   <FullscreenVideo>
    <keyboard>
      <key id=”166″Seek(30)</key>  <!– Up arrow –>
      <key id=”167″>Seek(-30)</key>  <!– Down arrow –>
      <key id=”168″>SmallStepForward</key>
      <key id=”169″>SmallStepBack</key>
    </keyboard>
    </FullscreenVideo>
</keymap>