Android: Need help injecting small Activity code 'intent' in my game

I have some games made for an android hardware.
Those games are being called thru another app (like a custom desktop/dashboard).
The company I work for with this games is Chinese so english communication is not great.
They sent me some lines of code they request I add to my games in order to make them able to be cycled by the dashboard (load one after other). They use Unity and I dont know where should I put this in my games as they request:

Intent intent = new Intent();
intent.setAction("com.XXXXX.action.gamefinish");
intent.putExtra("packageName" , "com.company.gamename");
startService(intent);

Please help :slight_smile:
Thanks!
Dany

1 Like

Bump (I wonder why Android support in Unreal is close to zero. A dark zone)

1 Like

Did you find any solution? I need it too.