调用RegisterStore
方法,提供您商店的名称和您的实现,该实现必须实现IStore接口。
public override void Configure() {
RegisterStore(“GooglePlay”, InstantiateMyStore());
}
private void InstantiateMyStore() {
if (Application.platform == RuntimePlatform.Android) {
return new MyAlternativeGooglePlayImplementation ();
}
return null;
}
商店名称必须与开发人员在为您的商店定义产品时使用的名称匹配,以便Unity IAPUnity 应用内购买的缩写
参见术语表在访问您的商店时使用正确的产品标识符。