static GooglePlayConfiguration BuildGooglePlayStoreConfiguration(IGooglePlayStoreService googlePlayStoreService, IGooglePurchaseCallback googlePurchaseCallback)
        {
            GooglePlayConfiguration googlePlayConfiguration = new GooglePlayConfiguration(googlePlayStoreService);

            googlePurchaseCallback.SetStoreConfiguration(googlePlayConfiguration);
            return(googlePlayConfiguration);
        }
        static GooglePlayStoreExtensions BuildGooglePlayStoreExtensions(IGooglePlayStoreService googlePlayStoreService, IGooglePlayStoreFinishTransactionService googlePlayStoreFinishTransactionService, IGooglePurchaseCallback googlePurchaseCallback)
        {
            GooglePlayStoreExtensions googlePlayStoreExtensions = new GooglePlayStoreExtensions(googlePlayStoreService, googlePlayStoreFinishTransactionService);

            googlePurchaseCallback.SetStoreExtension(googlePlayStoreExtensions);
            return(googlePlayStoreExtensions);
        }
Exemple #3
0
 internal GooglePlayStoreExtensions(IGooglePlayStoreService googlePlayStoreService, IGooglePlayStoreFinishTransactionService googlePlayStoreFinishTransactionService, GooglePlayStoreExtensionsInternal googlePlayStoreExtensionsInternal)
 {
     m_GooglePlayStoreService = googlePlayStoreService;
     m_GooglePlayStoreFinishTransactionService = googlePlayStoreFinishTransactionService;
     m_GooglePlayStoreExtensionsInternal       = googlePlayStoreExtensionsInternal;
     m_GooglePlayStoreExtensionsInternal.SetGooglePlayStoreExtensions(this);
 }
Exemple #4
0
 internal GooglePlayStorePurchaseService(IGooglePlayStoreService googlePlayStoreService)
 {
     m_GooglePlayStoreService = googlePlayStoreService;
 }
Exemple #5
0
 internal GooglePlayStoreFinishTransactionService(IGooglePlayStoreService googlePlayStoreService)
 {
     m_ProcessedPurchaseToken = new HashSet <string>();
     m_GooglePlayStoreService = googlePlayStoreService;
 }
 internal GooglePlayStoreExtensions(IGooglePlayStoreService googlePlayStoreService, IGooglePlayStoreFinishTransactionService googlePlayStoreFinishTransactionService)
 {
     m_GooglePlayStoreService = googlePlayStoreService;
     m_GooglePlayStoreFinishTransactionService = googlePlayStoreFinishTransactionService;
 }
Exemple #7
0
 internal GooglePlayStoreRetrieveProductsService(IGooglePlayStoreService googlePlayStoreService, IGoogleFetchPurchases googleFetchPurchases)
 {
     m_GooglePlayStoreService = googlePlayStoreService;
     m_GoogleFetchPurchases   = googleFetchPurchases;
 }
        static GooglePlayStoreExtensions BuildGooglePlayStoreExtensions(IGooglePlayStoreService googlePlayStoreService, IGooglePlayStoreFinishTransactionService googlePlayStoreFinishTransactionService)
        {
            GooglePlayStoreExtensions googlePlayStoreExtensions = new GooglePlayStoreExtensions(googlePlayStoreService, googlePlayStoreFinishTransactionService);

            return(googlePlayStoreExtensions);
        }
Exemple #9
0
 public GooglePlayConfiguration(IGooglePlayStoreService googlePlayStoreService)
 {
     m_GooglePlayStoreService = googlePlayStoreService;
 }
Exemple #10
0
 internal GooglePlayStoreRetrieveProductsService(IGooglePlayStoreService googlePlayStoreService, IGoogleFetchPurchases googleFetchPurchases, IGooglePlayConfigurationInternal googlePlayConfigurationInternal)
 {
     m_GooglePlayStoreService          = googlePlayStoreService;
     m_GoogleFetchPurchases            = googleFetchPurchases;
     m_GooglePlayConfigurationInternal = googlePlayConfigurationInternal;
 }
 internal GoogleFetchPurchases(IGooglePlayStoreService googlePlayStoreService, IGooglePlayStoreFinishTransactionService transactionService)
 {
     m_GooglePlayStoreService = googlePlayStoreService;
     m_TransactionService     = transactionService;
 }