Example #1
0
        static StoreKitManager()
        {
            AbstractManager.initialize(typeof(StoreKitManager));

            // we ignore the results of this call because our only purpose is to trigger the creation of the required listener on the native side for transaction processing.
            StoreKitBinding.canMakePayments();
        }
Example #2
0
        void coreFeatureButtonsGUI()
        {
            if (GUILayout.Button("Get Can Make Payments"))
            {
                bool canMakePayments = StoreKitBinding.canMakePayments();
                Debug.Log("StoreKit canMakePayments: " + canMakePayments);
            }


            if (GUILayout.Button("Request Product Data"))
            {
                // array of product ID's from iTunesConnect. MUST match exactly what you have there!
                var productIdentifiers = new string[] { "anotherProduct", "tt", "testProduct", "sevenDays", "oneMonthSubsciber" };
                StoreKitBinding.requestProductData(productIdentifiers);
            }


            if (GUILayout.Button("Restore Completed Transactions"))
            {
                StoreKitBinding.restoreCompletedTransactions();
            }


            if (GUILayout.Button("Refresh Receipt"))
            {
                StoreKitBinding.refreshReceipt();
            }


            if (GUILayout.Button("Enable High Detail Logs"))
            {
                StoreKitBinding.enableHighDetailLogs(true);
            }


            if (_products != null && _products.Count > 0)
            {
                GUILayout.Label("Store Promotion Visibility");
                if (GUILayout.Button("Fetch Store Promotion Visibility"))
                {
                    var product = _products[Random.Range(0, _products.Count)];

                    Debug.Log("preparing to fetch promotion visibility for product: " + product.productIdentifier);
                    StoreKitBinding.fetchStorePromotionVisibilityForProduct(product.productIdentifier);
                }


                if (GUILayout.Button("Set Store Promotion Visibility"))
                {
                    var product = _products[Random.Range(0, _products.Count)];

                    Debug.Log("preparing to fetch promotion visibility for product: " + product.productIdentifier);
                    StoreKitBinding.updateStorePromotionVisibilityForProduct(product.productIdentifier, SKProductStorePromotionVisibility.Hide);
                }
            }
        }
Example #3
0
        void productPurchaseAwaitingConfirmation(string json)
        {
            if (productPurchaseAwaitingConfirmationEvent != null)
            {
                productPurchaseAwaitingConfirmationEvent(StoreKitTransaction.transactionFromJson(json));
            }

            if (autoConfirmTransactions)
            {
                StoreKitBinding.finishPendingTransactions();
            }
        }
Example #4
0
        void deferredPaymentsGUI()
        {
            if (GUILayout.Button("Set Should Defer Store Payments"))
            {
                StoreKitBinding.setShouldDeferStorePayment(true);
            }


            if (GUILayout.Button("Is Deferred Payment Cached"))
            {
                Debug.Log("is there a deferred payment? " + StoreKitBinding.isDeferredPaymentCached());
            }


            if (GUILayout.Button("Get Deferred Payment Product ID"))
            {
                Debug.Log("deferred payment product ID: " + StoreKitBinding.getDeferredPaymentProductIdentifier());
            }
        }
        void OnGUI()
        {
            beginColumn();

            if (GUILayout.Button("Get Can Make Payments"))
            {
                bool canMakePayments = StoreKitBinding.canMakePayments();
                Debug.Log("StoreKit canMakePayments: " + canMakePayments);
            }


            if (GUILayout.Button("Request Product Data"))
            {
                // array of product ID's from iTunesConnect. MUST match exactly what you have there!
                var productIdentifiers = new string[] { "anotherProduct", "tt", "testProduct", "sevenDays", "oneMonthSubsciber" };
                StoreKitBinding.requestProductData(productIdentifiers);
            }


            if (GUILayout.Button("Restore Completed Transactions"))
            {
                StoreKitBinding.restoreCompletedTransactions();
            }


            if (GUILayout.Button("Refresh Receipt"))
            {
                StoreKitBinding.refreshReceipt();
            }


            if (GUILayout.Button("Enable High Detail Logs"))
            {
                StoreKitBinding.enableHighDetailLogs(true);
            }


            endColumn(true);


            // enforce the fact that we can't purchase products until we retrieve the product data
            if (_products != null && _products.Count > 0)
            {
                if (GUILayout.Button("Purchase Random Product"))
                {
                    var productIndex = Random.Range(0, _products.Count);
                    var product      = _products[productIndex];

                    Debug.Log("preparing to purchase product: " + product.productIdentifier);
                    StoreKitBinding.purchaseProduct(product.productIdentifier, 1);
                }
            }
            else
            {
                GUILayout.Label("Once you successfully request product data a purchase button will appear here for testing");
            }


            if (GUILayout.Button("Get Saved Transactions"))
            {
                var transactionList = StoreKitBinding.getAllSavedTransactions();

                // Print all the transactions to the console
                Debug.Log("\ntotal transaction received: " + transactionList.Count);

                foreach (StoreKitTransaction transaction in transactionList)
                {
                    Debug.Log(transaction.ToString() + "\n");
                }
            }


            if (GUILayout.Button("Get Current Transactions"))
            {
                var transactionList = StoreKitBinding.getAllCurrentTransactions();
                Utils.logObject(transactionList);
            }


            if (GUILayout.Button("Turn Off Auto Confirmation of Transactions"))
            {
                // this is used when you want to validate receipts on your own server or when dealing with iTunes hosted content
                // you must manually call StoreKitBinding.finishPendingTransactions when the download/validation is complete
                StoreKitManager.autoConfirmTransactions = false;
            }


            if (GUILayout.Button("Finish All Pending Transactions"))
            {
                // this is only necessary in the case where you turned off confirmation of transactions (see above)
                StoreKitBinding.finishPendingTransactions();
            }


            if (GUILayout.Button("Cancel Downloads"))
            {
                StoreKitBinding.cancelDownloads();
            }


            if (GUILayout.Button("Display App Store"))
            {
                StoreKitBinding.displayStoreWithProductId("656176278");
            }


            if (GUILayout.Button("Display Ask For Review"))
            {
                StoreKitBinding.askForReview();
            }


            if (GUILayout.Button("Validate Receipt (Please do this on a secure server)"))
            {
                StartCoroutine(StoreKitBinding.validateReceipt(true, "5590612e94e547e68066da2ae96e467d", receipt =>
                {
                    if (receipt == null)
                    {
                        Debug.LogError("null receipt. That means it wasnt present or the request failed.");
                        return;
                    }

                    if (receipt.status == 0)
                    {
                        Debug.Log("receipt validated");
                        Utils.logObject(receipt);
                    }
                    else
                    {
                        Debug.Log("receipt validation failed. Status: " + receipt.status);
                    }
                }));
            }

            endColumn();
        }