File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
android/src/main/java/com/lykhonis/flutterbilling Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -112,11 +112,13 @@ public void execute() {
112112 @ Override
113113 public void onSkuDetailsResponse (int responseCode , List <SkuDetails > skuDetailsList ) {
114114 if (responseCode == BillingResponse .OK ) {
115- Log .d ("BillingPlugin" , "fetchProducts(): SUCCESS" );
115+ Log .d ("BillingPlugin" , "fetchProducts(): SUCCESS, num products:" + skuDetailsList . size () );
116116
117117 final List <Map <String , Object >> products = new ArrayList <>();
118118
119119 for (SkuDetails details : skuDetailsList ) {
120+ Log .d ("BillingPlugin" , "fetchProducts(): SKU detail:" + details .getSku ());
121+
120122 final Map <String , Object > product = new HashMap <>();
121123 product .put ("identifier" , details .getSku ());
122124 product .put ("price" , details .getPrice ());
You can’t perform that action at this time.
0 commit comments