void onGetPurchasingVersion()
        {
            String promoVersion = PurchasingBridge.GetPromoVersion();
            int    eventType    = (int)PurchasingEvent.VERSION;

            m_UnityPurchasing.CallStatic("dispatchReturnEvent", eventType, promoVersion);
        }
        static void UnityAdsPurchasingGetPurchasingVersion()
        {
            string result = PurchasingBridge.GetPromoVersion();

            UnityAdsPurchasingDispatchReturnEvent((long)PurchasingEvent.VERSION, result);
        }