nbarkhina
nbarkhina

Reputation: 45

Xbox Live API for Windows Phone

If my game targets both Windows, Xbox, and Windows Phone - is the API supported on Windows Phone? or should I do a check and if it's Phone not use the APIs?

Upvotes: 0

Views: 159

Answers (1)

MrZweistein
MrZweistein

Reputation: 112

You can use the Xbox Live API with any Windows 10 UWP project which includes Windows 10 Phone. There are no restrictions other than your internet access to connect to the service.

If your game is based on C++ just incorporate the NuGet package like described here: https://developer.microsoft.com/en-us/games/xbox/docs/xboxlive/get-started/creators/getting-started-uwp-vs-creators

If your game is based on C# it is a little bit more complicated as you have to include the existing API source files by yourself. You will find the source code here: https://github.com/Microsoft/xbox-live-api-csharp

Upvotes: 1

Related Questions