How to integrate SDKs in projects for Android applications
Recommendations
When developing projects for Android applications, follow these recommendations:
Note
Currently, native authentication is supported by the following social networks:
- Set up deep links to return users to the application after they confirm registration via email.
- Customize registration confirmation email.
Note
You can disable sending of registration confirmation emails if your security principles allow it. Contact your Customer Success Manager to disable it, or email to csm@xsolla.com.
- Choose and set up the most suitable method of working with an in-game store. If you wish, you don’t have to implement the cart feature in your game. Instead, implement the ability to make an in-game purchase by clicking the Buy button.
- Set up user redirection to your application after making a payment via an external browser.
- Follow the Unity customization instruction to customize the UI for errors and pop-ups. Errors and pop-ups in the integration demo are created for game developers. Therefore, make them more suitable for the end users of your application.
Set up deep links for Android applications
- Open your project in Publisher Account.
- To set up user redirection to the application after they confirm registration:
- In the side menu, click Login.
- Select the Login project and click Configure.
- Go to the Security block and select the OAuth 2.0 section.
- Click on the pencil icon in the line of the required OAuth 2.0 client.
- Specify an OAuth 2.0 redirect URI (a path in the application the user is redirected to after successful authentication, email confirmation, or password reset). You can specify multiple valid URIs.
- Click Save changes.
Note
The URI must match the scheme
app://xlogin.<ANDROID_PACKAGE_NAME>
, where <ANDROID_PACKAGE_NAME>
is the package name of the Android application.- To set up user redirection to your application after they make a payment via an external browser:
- Click Pay Station in the side menu.
- Go to the Settings tab.
- Specify the required parameters in the Redirect policy section.
- Click Save.
Note
The return URL (the path in the application the user is redirected to after making a payment) must match the scheme
app://xpayment.<ANDROID_PACKAGE_NAME>
, where <ANDROID_PACKAGE_NAME>
is the package name of the Android application.Resolve Android dependencies
For Android builds, the SDK uses function from native Android libraries.
To resolve dependencies and download the necessary libraries:
- Specify Android as the build platform:
- In the Unity editor, go to
File > Build Settings in the main menu. - In the
Platform panel, selectAndroid . - Click
Switch Platform .
- In the Unity editor, go to
- Start the dependency manager:
- In the Unity editor, go to
Assets > External Dependency Manager > Android Resolver > Resolve in the main menu. - Wait for the dependency manager to finish.
- In the Unity editor, go to
As a result, the JAR or AAR files of all the necessary Android libraries are downloaded to the Assets/Plugins/Android
folder.
Was this article helpful?
Thank you for your feedback!
We’ll review your message and use it to help us improve your experience.Found a typo or other text error? Select the text and press Ctrl+Enter.