[Solved] Issue with purchase on Tizen platform

I have problem with IAP on Tizen, when i trying purchase some items i get error:

But it seems like all fine in my code, this is how i define products:

builder = ConfigurationBuilder.Instance(StandardPurchasingModule.Instance());

for (int idx = 0; idx < _inAppProducts.Count; idx++)
{
    InAppProduct inAppProduct = _inAppProducts[idx];
    builder.AddProduct(inAppProduct.id, inAppProduct.type, new IDs() {{inAppProduct.id, TizenStore.Name}});
}

builder.Configure<ITizenStoreConfiguration>().SetGroupId("own_group_id");
UnityPurchasing.Initialize(this, builder);

So, why i get this type of error?

My environment:
IAP SDK version is 1.11.4
Unity version is 5.6.1p3
Testing with Remote test lab on Samsung Z3(tizen 2.4)

@CrazyD0G

We have identified an issue with the Tizen part of our IAP plugin. We have a fix that should be available in the next version of the plugin. You will be notified in the Editor when it is available for download.

I apologize for any inconvenience this issue has caused.

Version 1.12.0 is now available and it should have the fix for Tizen that I mentioned.
https://forum.unity3d.com/threads/u…-1-12-0-is-now-available.415517/#post-3160929

If you still have issues with that version, please let us know.

Hi!
Thank you for you help! I’ll try new Unity IAP sdk ASAP and let you know about results.