Няма описание
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

InitializationFailureReason.cs 787B

123456789101112131415161718192021222324252627
  1. namespace UnityEngine.Purchasing
  2. {
  3. /// <summary>
  4. /// Reasons for which purchasing initialization could fail.
  5. /// </summary>
  6. public enum InitializationFailureReason
  7. {
  8. /// <summary>
  9. /// In App Purchases disabled in device settings.
  10. /// </summary>
  11. PurchasingUnavailable,
  12. /// <summary>
  13. /// No products available for purchase,
  14. /// Typically indicates a configuration error.
  15. /// </summary>
  16. NoProductsAvailable,
  17. /// <summary>
  18. /// The store reported the app as unknown.
  19. /// Typically indicates the app has not been created
  20. /// on the relevant developer portal, or the wrong
  21. /// identifier has been configured.
  22. /// </summary>
  23. AppNotKnown
  24. }
  25. }