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
Thanks!
Dany