IModuleInterface
를 상속 받은 IGamebase에서 제공하던 API를 UGameInstanceSubsystem
을 상속 받은 UGamebaseSubsytem에서 제공하도록 변경했습니다.UNREAL_WINDOWS
항목을 확인하시기 바랍니다.미소비 내역 조회 API가 변경되어 신규 API로 변경해야 합니다.
// Deprecated API
void RequestItemListOfNotConsumed(const FGamebasePurchasableReceiptListDelegate& onCallback);
// New API
void RequestItemListOfNotConsumed(const FGamebasePurchasableConfiguration& Configuration, const FGamebasePurchasableReceiptListDelegate& onCallback);
활성화 구독 조회 API가 변경되어 신규 API로 변경해야 합니다.
// Deprecated API
void RequestActivatedPurchases(const FGamebasePurchasableReceiptListDelegate& onCallback);
// New API
void RequestActivatedPurchases(const FGamebasePurchasableConfiguration& Configuration, const FGamebasePurchasableReceiptListDelegate& onCallback);
(Android) IAP 구독 상태를 조회할 수 있는 RequestSubscriptionsStatus API가 추가되었습니다.