I think I may have found the answer. In following v3's TrivialDriveExample I was calling the queryInventoryAsync function in the mHelper.startSetup() function like so:
Log.d(TAG, "Setup successful. Querying inventory.");
mHelper.queryInventoryAsync(mGotInventoryListener);
Instead now I'm passing a String array list of my SKUs that I want to query for:
List<String> skulist = new ArrayList<String>();
skulist.add("my_sku_name1");
skulist.add("my_sku_name2");
mHelper.queryInventoryAsync(true, skulist, mGotInventoryListener);
I then tested by turning on flight mode and I was able to query my purchases fine!
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…