Question by
White8eard · Mar 07, 2016 at 04:22 PM ·
c#androidiappurchase
Unity iAp initialization problem
using System;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.Purchasing;
using UnityEngine.SceneManagement;
// Placing the Purchaser class in the CompleteProject namespace allows it to interact with ScoreManager, one of the existing Survival Shooter scripts.
//namespace CompleteProject
//{
// Deriving the Purchaser class from IStoreListener enables it to receive messages from Unity Purchasing.
public class Purchaser : MonoBehaviour, IStoreListener
{
public bool main;
public AudioClip cashed;
AudioSource audio;
private static IStoreController m_StoreController; // Reference to the Purchasing system.
private static IExtensionProvider m_StoreExtensionProvider; // Reference to store-specific Purchasing subsystems.
// Product identifiers for all products capable of being purchased: "convenience" general identifiers for use with Purchasing, and their store-specific identifier counterparts
// for use with and outside of Unity Purchasing. Define store-specific identifiers also on each platform's publisher dashboard (iTunes Connect, Google Play Developer Console, etc.)
//private static string kProductIDConsumable = "consumable"; // General handle for the consumable product.
private static string first = "coins_10k";
private static string second = "coins_100k";
private static string third = "coins_50k";
private static string kProductIDNonConsumable = "nonconsumable"; // General handle for the non-consumable product.
private static string kProductIDSubscription = "subscription"; // General handle for the subscription product.
private static string kProductNameAppleConsumable = "com.unity3d.test.services.purchasing.consumable"; // Apple App Store identifier for the consumable product.
private static string kProductNameAppleNonConsumable = "com.unity3d.test.services.purchasing.nonconsumable"; // Apple App Store identifier for the non-consumable product.
private static string kProductNameAppleSubscription = "com.unity3d.test.services.purchasing.subscription"; // Apple App Store identifier for the subscription product.
//private static string kProductNameGooglePlayConsumable = "com.Root.Combi"; // Google Play Store identifier for the consumable product.coins_10k
private static string GPCoins10k = "coins_10k";
private static string GPCoins100k = "coins_100k";
private static string GPCoins50k = "coins_50k";
private static string kProductNameGooglePlayNonConsumable = "com.unity3d.test.services.purchasing.nonconsumable"; // Google Play Store identifier for the non-consumable product.
private static string kProductNameGooglePlaySubscription = "com.unity3d.test.services.purchasing.subscription"; // Google Play Store identifier for the subscription product.
void Awake()
{
//UnInitialize();
}
//void OnLevelWasLoaded(int level)
//{
// if (level == 1)
// main = true;
// else
// main = false;
//}
void Start()
{
audio = GetComponent<AudioSource>();
// If we haven't set up the Unity Purchasing reference
if (m_StoreController == null)
{
// Begin to configure our connection to Purchasing
InitializePurchasing();
}
}
public void InitializePurchasing()
{
// If we have already connected to Purchasing ...
if (IsInitialized())
{
// ... we are done here.
return;
}
// Create a builder, first passing in a suite of Unity provided stores.
var builder = ConfigurationBuilder.Instance(StandardPurchasingModule.Instance());
// Add a product to sell / restore by way of its identifier, associating the general identifier with its store-specific identifiers.
builder.AddProduct(first, ProductType.Consumable, new IDs() { { kProductNameAppleConsumable, AppleAppStore.Name }, { GPCoins10k, GooglePlay.Name }, });// Continue adding the non-consumable product.
builder.AddProduct(second, ProductType.Consumable, new IDs() { { kProductNameAppleConsumable, AppleAppStore.Name }, { GPCoins50k, GooglePlay.Name }, });
builder.AddProduct(third, ProductType.Consumable, new IDs() { { kProductNameAppleConsumable, AppleAppStore.Name }, { GPCoins100k, GooglePlay.Name }, });
builder.AddProduct(kProductIDNonConsumable, ProductType.NonConsumable, new IDs() { { kProductNameAppleNonConsumable, AppleAppStore.Name }, { kProductNameGooglePlayNonConsumable, GooglePlay.Name }, });// And finish adding the subscription product.
builder.AddProduct(kProductIDSubscription, ProductType.Subscription, new IDs() { { kProductNameAppleSubscription, AppleAppStore.Name }, { kProductNameGooglePlaySubscription, GooglePlay.Name }, });// Kick off the remainder of the set-up with an asynchrounous call, passing the configuration and this class' instance. Expect a response either in OnInitialized or OnInitializeFailed.
UnityPurchasing.Initialize(this, builder);
}
private bool IsInitialized()
{
// Only say we are initialized if both the Purchasing references are set.
return m_StoreController != null && m_StoreExtensionProvider != null;
}
public void UnInitialize()
{
m_StoreController = null;
m_StoreExtensionProvider = null;
}
public void BuyConsumable(int a)
{
// Buy the consumable product using its general identifier. Expect a response either through ProcessPurchase or OnPurchaseFailed asynchronously.
if(a==1)
{
BuyProductID(first);
}
else if (a == 2)
{
BuyProductID(second);
}
else
{
BuyProductID(third);
}
}
public void BuyNonConsumable()
{
// Buy the non-consumable product using its general identifier. Expect a response either through ProcessPurchase or OnPurchaseFailed asynchronously.
BuyProductID(kProductIDNonConsumable);
}
public void BuySubscription()
{
// Buy the subscription product using its the general identifier. Expect a response either through ProcessPurchase or OnPurchaseFailed asynchronously.
BuyProductID(kProductIDSubscription);
}
void BuyProductID(string productId)
{
// If the stores throw an unexpected exception, use try..catch to protect my logic here.
try
{
// If Purchasing has been initialized ...
if (IsInitialized())
{
// ... look up the Product reference with the general product identifier and the Purchasing system's products collection.
Product product = m_StoreController.products.WithID(productId);
// If the look up found a product for this device's store and that product is ready to be sold ...
if (product != null && product.availableToPurchase)
{
Debug.Log(string.Format("Purchasing product asychronously: '{0}'", product.definition.id));// ... buy the product. Expect a response either through ProcessPurchase or OnPurchaseFailed asynchronously.
m_StoreController.InitiatePurchase(product);
}
// Otherwise ...
else
{
// ... report the product look-up failure situation
Debug.Log("BuyProductID: FAIL. Not purchasing product, either is not found or is not available for purchase");
}
}
// Otherwise ...
else
{
// ... report the fact Purchasing has not succeeded initializing yet. Consider waiting longer or retrying initiailization.
Debug.Log("BuyProductID FAIL. Not initialized.");
}
}
// Complete the unexpected exception handling ...
catch (Exception e)
{
// ... by reporting any unexpected exception for later diagnosis.
Debug.Log("BuyProductID: FAIL. Exception during purchase. " + e);
}
}
// Restore purchases previously made by this customer. Some platforms automatically restore purchases. Apple currently requires explicit purchase restoration for IAP.
public void RestorePurchases()
{
// If Purchasing has not yet been set up ...
if (!IsInitialized())
{
// ... report the situation and stop restoring. Consider either waiting longer, or retrying initialization.
Debug.Log("RestorePurchases FAIL. Not initialized.");
return;
}
// If we are running on an Apple device ...
if (Application.platform == RuntimePlatform.IPhonePlayer ||
Application.platform == RuntimePlatform.OSXPlayer)
{
// ... begin restoring purchases
Debug.Log("RestorePurchases started ...");
// Fetch the Apple store-specific subsystem.
var apple = m_StoreExtensionProvider.GetExtension<IAppleExtensions>();
// Begin the asynchronous process of restoring purchases. Expect a confirmation response in the Action<bool> below, and ProcessPurchase if there are previously purchased products to restore.
apple.RestoreTransactions((result) =>
{
// The first phase of restoration. If no more responses are received on ProcessPurchase then no purchases are available to be restored.
Debug.Log("RestorePurchases continuing: " + result + ". If no further messages, no purchases available to restore.");
});
}
// Otherwise ...
else
{
// We are not running on an Apple device. No work is necessary to restore purchases.
Debug.Log("RestorePurchases FAIL. Not supported on this platform. Current = " + Application.platform);
}
}
//
// --- IStoreListener
//
public void OnInitialized(IStoreController controller, IExtensionProvider extensions)
{
// Purchasing has succeeded initializing. Collect our Purchasing references.
Debug.Log("OnInitialized: PASS");
// Overall Purchasing system, configured with products for this application.
m_StoreController = controller;
// Store specific subsystem, for accessing device-specific store features.
m_StoreExtensionProvider = extensions;
}
public void OnInitializeFailed(InitializationFailureReason error)
{
// Purchasing set-up has not succeeded. Check error for reason. Consider sharing this reason with the user.
Debug.Log("OnInitializeFailed InitializationFailureReason:" + error);
}
public PurchaseProcessingResult ProcessPurchase(PurchaseEventArgs args)
{
// A consumable product has been purchased by this user.
if (String.Equals(args.purchasedProduct.definition.id, first, StringComparison.Ordinal))
{
Debug.Log(string.Format("ProcessPurchase: PASS. Product: '{0}'", args.purchasedProduct.definition.id));//If the consumable item has been successfully purchased, add 100 coins to the player's in-game score.
//ScoreManager.score += 100;
string json = PlayerPrefs.GetString("PlayerData");
PlayerData p = JsonUtility.FromJson<PlayerData>(json);
p.points += 10000;
p.purchased++;
string jsonb = JsonUtility.ToJson(p);
PlayerPrefs.SetString("PlayerData", jsonb);
GetComponent<AchievementScript>().Misc(3);
if (main)
GetComponent<MainMenu>().UpdateBank();
else
{
GetComponent<UIManager>().tpoints = p.points;
GetComponent<UIManager>().inapptext[1].text = p.points.ToString();
}
Debug.Log("Bought 10k");
audio.PlayOneShot(cashed);
}
else if (String.Equals(args.purchasedProduct.definition.id, second, StringComparison.Ordinal))
{
Debug.Log(string.Format("ProcessPurchase: PASS. Product: '{0}'", args.purchasedProduct.definition.id));//If the consumable item has been successfully purchased, add 100 coins to the player's in-game score.
//ScoreManager.score += 100;
string json = PlayerPrefs.GetString("PlayerData");
PlayerData p = JsonUtility.FromJson<PlayerData>(json);
p.points += 50000;
p.purchased++;
string jsonb = JsonUtility.ToJson(p);
PlayerPrefs.SetString("PlayerData", jsonb);
GetComponent<AchievementScript>().Misc(3);
if(main)
GetComponent<MainMenu>().UpdateBank();
else
{
GetComponent<UIManager>().tpoints = p.points;
GetComponent<UIManager>().inapptext[1].text = p.points.ToString();
}
Debug.Log("Bought 50k");
audio.PlayOneShot(cashed);
}
else if (String.Equals(args.purchasedProduct.definition.id, third, StringComparison.Ordinal))
{
Debug.Log(string.Format("ProcessPurchase: PASS. Product: '{0}'", args.purchasedProduct.definition.id));//If the consumable item has been successfully purchased, add 100 coins to the player's in-game score.
//ScoreManager.score += 100;
string json = PlayerPrefs.GetString("PlayerData");
PlayerData p = JsonUtility.FromJson<PlayerData>(json);
p.points += 100000;
p.purchased++;
string jsonb = JsonUtility.ToJson(p);
PlayerPrefs.SetString("PlayerData", jsonb);
GetComponent<AchievementScript>().Misc(3);
if (main)
GetComponent<MainMenu>().UpdateBank();
else
{
GetComponent<UIManager>().tpoints = p.points;
GetComponent<UIManager>().inapptext[1].text = p.points.ToString();
}
audio.PlayOneShot(cashed);
Debug.Log("Bought 100k");
}
// Or ... a non-consumable product has been purchased by this user.
else if (String.Equals(args.purchasedProduct.definition.id, kProductIDNonConsumable, StringComparison.Ordinal))
{
Debug.Log(string.Format("ProcessPurchase: PASS. Product: '{0}'", args.purchasedProduct.definition.id));
}// Or ... a subscription product has been purchased by this user.
else if (String.Equals(args.purchasedProduct.definition.id, kProductIDSubscription, StringComparison.Ordinal))
{
Debug.Log(string.Format("ProcessPurchase: PASS. Product: '{0}'", args.purchasedProduct.definition.id));
}// Or ... an unknown product has been purchased by this user. Fill in additional products here.
else
{
Debug.Log(string.Format("ProcessPurchase: FAIL. Unrecognized product: '{0}'", args.purchasedProduct.definition.id));
}// Return a flag indicating wither this product has completely been received, or if the application needs to be reminded of this purchase at next app launch. Is useful when saving purchased products to the cloud, and when that save is delayed.
return PurchaseProcessingResult.Complete;
}
public void OnPurchaseFailed(Product product, PurchaseFailureReason failureReason)
{
// A product purchase attempt did not succeed. Check failureReason for more detail. Consider sharing this reason with the user.
Debug.Log(string.Format("OnPurchaseFailed: FAIL. Product: '{0}', PurchaseFailureReason: {1}", product.definition.storeSpecificId, failureReason));
}
}
//}//
i get this following error
BuyProductID: FAIL. Exception during purchase. UnityEngine.MissingReferenceException: The object of type 'Purchaser' has been destroyed but you are still trying to access it.
Your script should either check if it is null or you should not destroy the object.
i works first time you enter app, but once reload the scene its just doesnt initliaze anymore, i tried dontdestroyonload,it gives out some error and i tried to uninitialize it manually on Awake(), which made eveyrting work fine on editor. but the result same on devices(android)
Comment
Your answer
Follow this Question
Related Questions
can i use Unity IAP in kitkat? 0 Answers
unity in app purchase not working in android 0 Answers
Unity iap ProcessPurchase behaves differently on ios and android 0 Answers
Java Exception When Setting Amazon as Target UnityIAP 0 Answers
Android IAP in Thailand payment went though but no rewards 0 Answers