fix(monetization): 광고/보상 로직 버그 수정 및 오프라인 2배 구현

- 인터스티셜 광고 실패 시 onComplete 콜백 미호출 수정
- AdType.rewardReturn 추가, 복귀 보상에 올바른 타입 적용
- SpeedBoostButton 기본 배율 10→5로 수정
- 유료 유저 오프라인 시간 2배 인정 로직 구현
- IAP 상품 ID remove_ads → remove_ads_and 변경
This commit is contained in:
JiWoong Sul
2026-03-09 15:34:21 +09:00
parent fc15198c57
commit f6799e0243
4 changed files with 13 additions and 5 deletions

View File

@@ -12,8 +12,7 @@ class IAPProductIds {
IAPProductIds._();
/// 광고 제거 상품 ID (비소모성)
/// TODO: Google Play Console / App Store Connect에서 상품 생성 후 ID 교체
static const String removeAds = 'remove_ads';
static const String removeAds = 'remove_ads_and';
/// 모든 상품 ID 목록
static const Set<String> all = {removeAds};