Reputation: 93
Currently, I am using mobile buy SDK version 3.2.3
and my code is:
QueryGraphCall graphCall = graphClient.queryGraph(graphqlQuery.getAllOrders(size, cursor));
graphCall.enqueue(new GraphCall.Callback<Storefront.QueryRoot>() {
@Override
public void onResponse(@NonNull GraphResponse<Storefront.QueryRoot> response) {
// Success response
}
@Override
public void onFailure(@NonNull GraphError error) {
//Failure Response
}
});
Updated my shopify version to 4.0.0
and now it shows can not resolve symbol GraphCall.Callback
I am new to shopify, Can anybody help me to this problem
implementation 'com.shopify.mobilebuysdk:buy3:3.2.3
>> 4.0.0
) version 4X does not supports minSdkVersion 19
so also changed the same to 21.Thanks in advance
Upvotes: 1
Views: 463