当前,我正在使用FlutterInAppPurchase插件在应用购买中实现波动。
我的Google Play控制台在被管理产品中有3个项目,
final List<String> _productLists = ['get_10_coins', 'get_100_coins', 'get_1000_coins']
现在,我更新了“ get_10_coins”产品的详细信息,但是当我使用FlutterInappPurchase.instance.getProducts(_productLists)时,该信息未在应用程序中得到体现。方法。
然后我删除了该产品,并添加了新的托管产品,例如“ get_50_coins”。但是,它仍然向我展示了“ get_10_coins”产品的旧细节。
// fetching products using the following code
List<IAPItem> items = await FlutterInappPurchase.instance.getProducts(_productLists);
有人可以告诉我这是什么问题吗?我也已经卸载了应用程序。
谢谢。
我明白了。