Obtaining Project IDs
Here you will learn how and where to find various IDs necessary for your integration purposes.
Project ID
Find your Project ID in the Publisher Account next to the name of your project.
Login ID
To get project's Login ID, open your project in the Publisher Account, navigate to Login > Dashboard, and copy the ID next to the name of the Login project.
Using the IDs with SDK
The obtained IDs can now be used for configuring the SDK prior to its initialization.
- Unity
- Android
- iOS
var settings = XsollaStoreClientSettings.Builder.Create()
.SetProjectId(<Project ID>)
.SetLoginId(<Login ID>)
...
final Config billingClientConfig = new Config(
Config.Common.getDefault(),
Config.Integration.forXsolla(
Config.Integration.Xsolla.Authentication.forAutoJWT(
ProjectId.parse(<Project ID>).getRight(),
LoginUUID.parse(<Login ID>).getRight()
)
),
Config.Payments.getDefault()
);
During the Preview phase, please contact your Account Manager to get access to the Xsolla Mobile SDK for iOS.
tip
For more information on how to configure the Mobile SDK, visit Configure SDK.