Пример #1
0
    private static bool _IsProductStatusPending(string sku)
    {
        Enhance.InitializeEnhance();

#if UNITY_EDITOR
        return(FGLEditorInternals.IsProductStatusPending(sku));
#elif UNITY_ANDROID
        return(FGLAndroidInternals.IsProductStatusPending(sku));
#elif UNITY_IOS
        return(false); //iOS doesn't need pending transations
#else
        return(false);
#endif
    }