SDKs code references for Unity
Easily embed Xsolla services with this ready-to-use libraries for Unity applications and games
All Classes Namespaces Functions Variables Enumerations Enumerator Pages
Xsolla.Core Namespace Reference

Classes

class  BrowserCloseInfo
 
class  CoroutinesExecutor
 
class  DataClassExtensions
 
class  Error
 
class  ErrorTypeParser
 
interface  IInAppBrowser
 
class  ImageLoader
 
class  LoginError
 
class  MainThreadExecutor
 
class  MediaListItem
 
class  OrderContent
 
class  OrderData
 
class  OrderId
 
class  OrderItem
 
class  OrderStatus
 
class  ParseUtils
 
class  PayStationUI
 
class  PlatformSpecificAppearance
 
class  Price
 
class  PurchaseParams
 Purchase parameters. More...
 
class  PurchaseParamsGenerator
 
class  RedirectPolicy
 
class  RedirectUrlHelper
 
class  ShippingData
 
class  StoreItem
 
class  StoreItemAttribute
 
class  StoreItemGroup
 
class  StoreItemLimits
 
class  StoreItemPromotion
 
class  UrlBuilder
 
class  UserInfo
 
class  VirtualPrice
 
class  WebGlAppearance
 
class  XsollaLauncherAuth
 
class  XsollaWebBrowser
 

Enumerations

enum  AndroidActivityType { WebView , CustomTab , TrustedWebActivity }
 
enum  DeviceType { Android , iOS }
 
enum  SocialProvider {
  None , Facebook , GitHub , Google ,
  Twitch , Twitter , Steam , Xbox ,
  Discord , Vk , Naver , Kakao ,
  Baidu , Battlenet , ChinaTelecom , Instagram ,
  LinkedIn , Odnoklassniki , PayPal , Pinterest ,
  QQ , Reddit , Vimeo , WeChat ,
  Weibo , Yahoo , Amazon , Mailru ,
  Microsoft , Msn , Yandex , YouTube ,
  Apple
}
 Social providers list for Login Social Auth. See full list in Login API documentation.
 
enum  VirtualItemType {
  None , Consumable , NonConsumable , NonRenewingSubscription ,
  VirtualCurrency
}
 
enum  ErrorGroup {
  CommonErrors , TokenErrors , LoginErrors , RegistrationErrors ,
  ResetPasswordErrors , ItemsListErrors , ConsumeItemErrors , BuyItemErrors ,
  CartErrors , BuyCartErrors , OrderStatusErrors , CouponErrors
}
 
enum  ErrorType {
  Undefined , UnknownError , NetworkError , InvalidToken ,
  AuthorizationHeaderNotSent , MethodIsNotAllowed , NotSupportedOnCurrentPlatform , InvalidData ,
  ProductDoesNotExist , PayStationServiceException , UserNotFound , CartNotFound ,
  OrderNotFound , InvalidCoupon , PasswordResetNotAllowedForProject , RegistrationNotAllowedException ,
  TokenVerificationException , UsernameIsTaken , EmailIsTaken , UserIsNotActivated ,
  CaptchaRequiredException , InvalidProjectSettings , InvalidLoginOrPassword , InvalidAuthorizationCode ,
  ExceededAuthorizationCodeAttempts , MultipleLoginUrlsException , SubmittedLoginUrlNotFoundException , IncorrectFriendState ,
  TimeLimitReached
}
 

Enumeration Type Documentation

◆ AndroidActivityType

Enumerator
WebView 

A web-view based solution will be used for displaying the content. Pros:

  • seamless UX experience (no additional activity is opened over the app)
  • allows for screen orientation locking (n/a right now)
  • doesn't have a standard toolbar at the top (e.g. CustomTabs variant) Cons:
  • might not support natively security oriented features like Google Wallet, etc.
CustomTab 

A Chrome Custom Tabs based solution will be used for displaying the content. Pros:

  • integrates natively with Google Wallet and other on-device payment services (auto-fill, etc) Cons:
  • opens in an overlay activity over the app
  • relies on Chrome and its versions when it comes to extra features support
  • doesn't allow for screen orientation locking
TrustedWebActivity 

A Trusted Web Activity based solution is used for displaying the content. Pros:

  • integrates natively with Google Wallet and other on-device payment services (auto-fill, etc)
  • doesn't hava a standard toolbar at the top (e.g. CustomTabs variant), when run in trusted mode
  • allows for screen orientation locking, when run in trusted mode
  • supports for a smooth transition into the content (uses a customized background and a fade-out effect for this purpose) Cons:
  • some features require the trusted mode to be active for them to work (see here)