Deep Link with Apple Games

Hello,

With iOS26, you can use Apple Games to open your game with a deep link, which looks like this: https://games.apple.com/us/activity/start?a=xyzxzyxzy

I never found out how to use deep links, so this also doesn’t work for me. I am checking for:
Runtime:addEventListener(“system”, onSystemEvent)
Runtime:addEventListener(“universalLinks”, universalLinksListener) => Scott’s universalLinks plugin
local launchArgs = …

But none of this works. Does anyone have an idea?

1 Like

I found a solution. You can enter a fallback link in the Games App event, but I find the description not really helpful. It says it uses the fallback link if the Games App is not available, but it actually opens the game with that link, or at least somehow passes it to the game. So I was able to add that link (www.abc.de/activity/start) and use Scott’s plugin to listen to that link. When I now open the game with the challenge-button in the Games app (not the normal “Play button”), I get the event from the universalLinks listener that it was opened from www.abc.de/activity/start.

2 Likes