Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在我的安卓应用中使用亚马逊应用。
PurchasingManager.initiateItemDataRequest(skuKye);定义了像skuKye这样的错误是字符串。你必须将它转换成设置的数据类型。
PurchasingManager.initiateItemDataRequest(skuKye);
请指导我
该initiateItemDataRequest方法需要Set<String>包含请求的 SKU。如果你只有一个 SKU,你应该可以这样调用它:
initiateItemDataRequest
Set<String>
Set<String> skuSet = new HashSet<String>(); skuSet.add(skuKye); PurchasingManager.initiateItemDataRequest(skuSet);