You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 29, 2022. It is now read-only.
I haven't actually used this ane yet, but it looks quite nice and I thank you for releasing it.
However, while looking over the code to see how it works, I noticed that in TrackData.java trackTransaction() method when a Transaction instance is created with Transaction.Builder, the setShippingCostInMicros() method is called twice. For the tax setting, it should be:
builder.setTotalTaxInMicros((long) (tax * 1000000));
Easy enough typo, but something to have look at.
Thank you again,
Devon
The text was updated successfully, but these errors were encountered:
Hello alebianco,
I haven't actually used this ane yet, but it looks quite nice and I thank you for releasing it.
However, while looking over the code to see how it works, I noticed that in TrackData.java trackTransaction() method when a Transaction instance is created with Transaction.Builder, the setShippingCostInMicros() method is called twice. For the tax setting, it should be:
builder.setTotalTaxInMicros((long) (tax * 1000000));
Easy enough typo, but something to have look at.
Thank you again,
Devon
The text was updated successfully, but these errors were encountered: