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
I am implementing international pricing in our Shopify app and it's working fine everywhere but when i am creating checkout i don't know why it is not giving me the converted price can anyone help me in this ?
I am using latest shopify sdk version
implementation ('com.shopify.mobilebuysdk:buy3:12.0.0'){
exclude group: "com.shopify.graphql.support"
}
i am sending country code in mutation as you can see below
actually am facing issues to show international pricing on products can you please help me
i am using sdk
//Shopify with GraphQL
implementation('com.shopify.mobilebuysdk:buy3:14.0.0')
{
exclude group: "com.shopify.graphql.support"
}
//
and issue you facing is resolved by adding input on checkout input.setBuyerIdentity(new Storefront.CheckoutBuyerIdentityInput(Storefront.CountryCode.PK));
you can change according to you country then you can see the converted prices
I am implementing international pricing in our Shopify app and it's working fine everywhere but when i am creating checkout i don't know why it is not giving me the converted price can anyone help me in this ?
I am using latest shopify sdk version
implementation ('com.shopify.mobilebuysdk:buy3:12.0.0'){
exclude group: "com.shopify.graphql.support"
}
i am sending country code in mutation as you can see below
Storefront.MutationQuery {
var createcheckoutmutation: Storefront.MutationQuery? = null
createcheckoutmutation = Storefront.mutation(directive) { root ->
root
The text was updated successfully, but these errors were encountered: