Beta Advanced Emulator Launcher - Multi-emulator frontend for Kodi
Maybe it is the python code that launches system/bin/am. I compared the code of our three Addons and they are all a bit different.

If I grabbed the correct parts of your addons it looks like this:

IAGL (Non-Android)
Code:
subprocess.call(self.external_launch_command,shell=True)
IAGL (Android):
Code:
subprocess.call(self.external_launch_command,shell=True,executable='/system/bin/sh')
RCB
Code:
subprocess.Popen(cmd, shell=True)
AEL
Code:
subprocess.call(command, stdout = f, stderr = subprocess.STDOUT, close_fds = True)

The difference seems to be the "executable='/system/bin/sh'" part in IAGLs launch code. Maybe thats the trick. But as Wintermute I can't test on Android 8, so I can't tell if this will work.
Reply


Messages In This Thread
RE: Advanced Emulator Launcher - Multi-emulator frontend for Kodi - by malte - 2018-07-04, 14:21
Can You create A Sub Category? - by Wild_Tom - 2020-07-13, 04:43
Crash & Lost my launchers? - by eirrocmh - 2020-11-29, 02:25
RE: Crash & Lost my launchers? - by eirrocmh - 2020-12-19, 00:19
Logout Mark Read Team Forum Stats Members Help
Advanced Emulator Launcher - Multi-emulator frontend for Kodi12