Autres

Learn about advanced setups from our how-tos.

Comment intégrer des SDK dans des projets d'applications Android

Recommandations

When developing projects for Android applications, follow these recommendations:

  1. Set up native authentication via social networks.

Note
Currently, native authentication is supported by the following social networks:
  • Google
  • Facebook
Use the WebView tool to set up native authentication for other social networks.
  1. Set up deep links to return users to the application after they confirm registration via email.
  2. Customize registration confirmation email.
Note
You can disable sending of registration confirmation emails if your security principles allow it. Contact your Account Manager to disable it, or email csm@xsolla.com.
  1. 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.
  2. Set up user redirection to your application after making a payment via an external browser.
  3. Follow the UMG UI documentation 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.

To set up user redirection to your application after they make a payment via an external browser:

  1. Go to Publisher Account.
  2. Go to your project and click Open in the Pay Station block.
  3. Go to Settings.
  4. Specify the required parameters in the Redirect policy section and click Save.
  5. Go to your UE4 project.
  6. Go to Settings > Project Settings > Plugins > Xsolla Store.
  7. Check the Use Deep Linking box and in the Redirect URL field, enter the return URL (a URL address or a path a user is redirected to after making a payment) specified in the Publisher Account.

To set up returning users to the application after they confirm registration:

  1. Go to Publisher Account.
  2. Go to your project and click Open in the Login block.
  3. Go to Login projects.
  4. Click Open and set up.
  5. Go to the URL block, specify Callback URL (a URL address or a path a user is redirected to after successful authentication, email confirmation, or password reset), and click Save changes.
  6. Go to your UE4 project.
  7. Go to Settings > Project Settings > Platforms > Android > Advanced APK Packaging.
  8. Enter the code below in the Extra Settings for section (/n to separate lines) field. In the code, specify callback URL divided into 3 parts. The example below is for https://example.com/callback.

Copy
Full screen
Small screen
            <intent-filter>
                <data android:scheme="https" />
                <data android:host="example.com" />
                <data android:pathPrefix="/callback" />

                <action android:name="android.intent.action.VIEW" />

                <category android:name="android.intent.category.DEFAULT" />
                <category android:name="android.intent.category.BROWSABLE" />
            </intent-filter>
Cet article vous a été utile ?
Merci !
Que pouvons-nous améliorer ? Message
Nous sommes désolés de l'apprendre
Dites-nous pourquoi vous n'avez pas trouvé cet article utile. Message
Merci pour votre commentaire !
Nous examinerons votre message et l'utiliserons pour améliorer votre expérience.
Masquer

Comment modifier le SDK

The SDK is a flexible solution that you can customize to fit your specific application.

To modify the SDK code downloaded from the Unreal Engine Marketplace, follow these steps:

  1. Open the catalog <UE4 Root>/Engine/Plugins/Marketplace/<Plugin name>, where:
    • <UE4 Root> — path to the root directory where Unreal Engine is installed.
    • <Plugin name> — plugin name.

  1. Move the directory with the plugin files to \/Plugins/, where \ is the path to your UE4 project.
  2. Make changes to the plugin code and restart the project. You need to confirm the rebuild of the plugin module.
  3. Delete the Binaries and Intermediate folders.

You don’t need to do any preliminary steps to make changes to the SDK you downloaded from GitHub.

Cet article vous a été utile ?
Merci !
Que pouvons-nous améliorer ? Message
Nous sommes désolés de l'apprendre
Dites-nous pourquoi vous n'avez pas trouvé cet article utile. Message
Merci pour votre commentaire !
Nous examinerons votre message et l'utiliserons pour améliorer votre expérience.
Masquer
Dernière mise à jour: 10 Octobre 2023

Faute de frappe ou autre erreur dans le texte ? Sélectionnez le texte concerné et appuyez sur Ctrl+Entée.

Signaler un problème
Nous améliorons continuellement notre contenu grâce à vos commentaires.
Indiquez votre adresse e-mail pour un suivi
Merci pour votre commentaire !