🔧revenuecat-troubleshoot
- プラグイン
- revenuecat
- ソース
- GitHub で見る ↗
説明
RevenueCatのインテグレーションに関する問題を診断・解決します。RevenueCat MCPを通じてダッシュボードの設定を検査し、SDKのデバッグログを確認しながら、コード側のよくある落とし穴もカバーします。 次のような場合に使用: - オファリングが空になっている - プロダクトが読み込まれない - 購入後にエンタイトルメントがアクティブにならない - ペイウォールが表示されない - トランザクションが表示されない - カスタマー情報にエンタイトルメントが表示されない - サンドボックス購入が機能しない - iOS、Android、Kotlin Multiplatform、Flutter、またはReact NativeでRevenueCatが正常に動作しない
原文を表示
Diagnose and resolve RevenueCat integration issues — inspects dashboard configuration through the RevenueCat MCP, walks the SDK debug logs, and covers code-side gotchas. Use when the user says offerings are empty, products not loading, entitlement not active after purchase, paywall won't load, transactions not appearing, customer info shows no entitlements, sandbox purchase not working, or RevenueCat is broken on iOS, Android, Kotlin Multiplatform, Flutter, or React Native.
ユースケース
- ✓オファリングが空になっている
- ✓プロダクトが読み込まれない
- ✓購入後にエンタイトルメントがアクティブにならない
- ✓ペイウォールが表示されない
- ✓トランザクションが表示されない
本文
revenuecat-troubleshoot: diagnose RevenueCat integration problems
Use this skill when the user reports a RevenueCat behavior that does not match expectations: empty offerings, missing products, an entitlement that does not unlock after a successful purchase, a paywall that fails to render, or sandbox transactions that never reach the dashboard.
This skill combines two angles:
- Code-side diagnosis — turn on debug logging, walk a universal checklist, drop into platform specifics.
- Dashboard inspection — use the RevenueCat MCP server to read the project, apps, products, entitlements, offerings, and webhooks, and offer fixes.
Work them in order. Most reports resolve before you reach the platform specifics.
1. Detect the platform
Inspect the working directory and pick the first match, from top to bottom:
- React Native:
package.jsonhas areact-native-purchasesentry, orreact-nativeas a dependency → readplatforms/react-native.md. Ifexpois also a dependency, note it as an Expo project. - Flutter:
pubspec.yamlexists at the project root → readplatforms/flutter.md. - Kotlin Multiplatform:
build.gradle.ktscontains akotlin { … }multiplatform source sets block, or depends oncom.revenuecat.purchases:purchases-kmp*→ readplatforms/kmp.md. - Android (native):
build.gradle(.kts)appliescom.android.application(and is not KMP) → readplatforms/android.md. - iOS (native):
Package.swift,*.xcodeproj,*.xcworkspace, orPodfileat the project root → readplatforms/ios.md.
If several match (e.g. an ios/ folder inside a Flutter project), pick the outermost project, the one that owns the build. If still ambiguous, ask the user which platform the bug reproduces on.
2. Universal code-side checklist
Walk these nine items in order. Most reports are resolved by steps 1 through 5.
- Turn on debug logging and reproduce. The SDK narrates what it is doing. Roughly 80% of reports are diagnosable from the log output alone. Each platform file shows how to set
logLevelto debug. - Verify the API key platform matches the app. iOS apps must use an
appl_…public SDK key. Android apps must usegoog_…(oramzn_…for Amazon). A mismatched key produces an authentication error on the first network call. On iOS this surfaces as anINVALID_CREDENTIALSerror code. On Android it surfaces asPurchasesErrorCode.InvalidCredentialsError. Use thelist-app-public-api-keysRevenueCat MCP tool to list the API keys for the project. - Verify the bundle ID / package name matches the one set up in the RevenueCat project.
List the apps using the
list-appsRevenueCat MCP tool. Thebundle_id(iOS / App Store) orpackage_name(Android / Play Store / Amazon Appstore) registered there must match the built app exactly, including capitalization. A mismatch causes offerings to come back empty because the app is not recognized. - Verify offerings in the RevenueCat project. List the project's offerings using the
list-offeringsRevenueCat MCP tool, passing the parameterexpand=items.package.product. The offering marked withis_current: truemust have at least one package attached, and each package must reference a store product. An offering with zero packages returns an emptyavailablePackageslist even thoughgetOfferingssucceeds. - Verify store products are live. Products must be in "Ready to Submit" on App Store Connect or "Active" on Google Play Console. A product in a draft state will not be returned by the store, even in sandbox. If the SDK logs show offerings arriving from RevenueCat but products failing to resolve, this is almost always the cause. Use the
get-product-store-stateRevenueCat MCP tool to understand the state of product in App Store Connect or Google Play Console (fieldstore_status). - Verify the testing account. iOS: the device must be signed into a Sandbox Apple ID under Settings → App Store → Sandbox Account (set on iOS 14+ after the first sandbox prompt). Android: the tester's Gmail must be added to Google Play Console → Setup → License testing, and the app must be installed via the Internal Testing opt-in link, not sideloaded.
- Verify the network. Corporate VPNs, captive portals, and some DNS filters silently block the RevenueCat API or the store APIs. Try a different network before digging deeper.
- Verify the appUserID. If
logIn(appUserID)was called with an ID that does not match what the user expects, entitlements appear missing because they are attached to a different RC user. PrintPurchases.shared.appUserID(iOS) /Purchases.sharedInstance.appUserID(Android) and confirm it matches. - Reset and retry. Uninstall the app, re-sign into the sandbox / tester account, reinstall from the correct channel, relaunch.
3. Dashboard inspection via the RevenueCat MCP
Use this when steps 3, 4, or 5 above point at dashboard configuration, when the user has no working app yet, or when you need to confirm a fix landed.
Important: The API key may have access to multiple projects. Always call list-projects first. If multiple projects are returned, ask the user which to inspect.
Phase A: gather context
- Symptom — "What specifically isn't working? What error messages are you seeing? Which platform (iOS, Android, Web)?"
- User state — "Is this happening for new purchases or existing subscribers? Sandbox or production?"
Phase B: systematic diagnosis
Work through this checklist via MCP tools:
Check 1: Project overview
list-projects → ask user to select project if multiple
list-apps (with selected project_id)
- Verify project exists and apps are present.
Check 2: Products
list-products
get-product-store-state
- [ ] Products exist for each store item.
- [ ] Store identifiers match App Store Connect / Play Console exactly.
- [ ] Product types are correct (subscription vs one-time).
- [ ] Play Store: using
product_id:base_plan_idformat. - [ ] Store State:
store_status.status=ok.
Check 3: Entitlements
list-entitlements
get-products-from-entitlement (for each entitlement)
- [ ] Entitlements exist for each access level.
- [ ] Products are attached to entitlements.
- [ ] No orphaned products (products not granting any entitlement).
Check 4: Offerings
list-offerings
list-packages
- [ ] At least one offering exists with
is_current: true. - [ ] Packages contain products.
- [ ] Package identifiers use standard conventions (
$rc_monthly, etc.).
Check 5: Webhooks (if server-side issues suspected)
list-webhook-integrations
- [ ] Webhook URL is correct and accessible.
- [ ] Environment matches (production vs sandbox).
Phase C: report and offer fixes
Diagnostic Report
=================
Project: {project_name}
Checks Passed: ✅
- Project exists and is accessible
- 2 apps configured (iOS, Android)
- 4 products found
Issues Found: ⚠️
1. CRITICAL: Product not attached to entitlement
Product: annual_premium (prod123)
Fix: Attach this product to an entitlement
2. WARNING: Offering has empty package
Offering: default / Package: $rc_annual has no products
Fix: Attach annual_premium to this package
3. INFO: No webhook configured
Optional but recommended for server-side access control
Recommended Actions:
1. Attach annual_premium to "premium" entitlement
2. Attach annual_premium to $rc_annual package
Would you like me to fix issues #1 and #2 now?
For each fixable issue, confirm with the user, then execute via MCP:
attach-products-to-entitlementattach-products-to-package
4. Platform specific step
Read the platform file that matches detection. Each one lists platform specific gotchas not covered above (StoreKit configuration files, Gradle/desugaring, Metro caching, Expo prebuild, etc.).
platforms/ios.mdplatforms/android.mdplatforms/kmp.mdplatforms/flutter.mdplatforms/react-native.md
5. Verify the fix
Do not declare the issue fixed until:
- The log that previously showed the error now shows the expected success line (offerings returned with at least one package, purchase completed, entitlement active).
- The dashboard reflects the change. For a purchase, check the Sandbox view on the Customers page and confirm the transaction is attached to the right
appUserID. - The reproduction steps from the original report now pass.
If the user cannot reproduce locally, have them send the full debug log from app launch to the moment of failure. The SDK's own output is usually enough.
Reference: SDK error codes
Common errors
| Error code | Likely cause | Solution |
|---|---|---|
INVALID_APP_USER_ID |
Reserved characters or empty string | Use alphanumeric IDs, underscores, hyphens only |
INVALID_CREDENTIALS |
Wrong API key or bundle ID mismatch | Verify API key matches app |
NETWORK_ERROR |
No connectivity or firewall | Check network, verify RevenueCat domains allowed |
STORE_PROBLEM |
Store downtime, config issue, iOS 18.x bug | Check store status, verify config, see Known iOS Issues below |
SIGNATURE_VERIFICATION_FAILED |
Tampered receipt or config error | Verify In-App Purchase Key (iOS) or service credentials |
Purchase errors
| Error code | Solution |
|---|---|
RECEIPT_ALREADY_IN_USE |
Call restorePurchases() or sync customer |
PRODUCT_NOT_AVAILABLE_FOR_PURCHASE |
Verify product status in App Store Connect / Play Console |
PURCHASE_NOT_ALLOWED |
Check parental controls, payment method |
PRODUCT_ALREADY_PURCHASED |
Call restorePurchases() to sync |
Reference: debug log interpretation
Ask the developer to enable debug logging:
- iOS:
Purchases.logLevel = .debug - Android:
Purchases.logLevel = LogLevel.DEBUG
Log emoji indicators: 🍎 Apple/StoreKit · 🤖 Google Play · 📦 Amazon · 😿 RevenueCat backend.
Reference: known platform issues
iOS
iOS 18.0–18.3.2: StoreKit Daemon Connection Failure
- Symptom:
STORE_PROBLEM(NSCocoaErrorDomain Code 4097) on ~25% of purchases on physical devices. - Fix: Upgrade to iOS 18.4+.
iOS 18.4–18.5 Simulator: Products Don't Load
- Symptom: Products return empty in simulator with sandbox.
- Affected: Simulator only — physical devices and production unaffected.
- Fix: Test on physical device, or use Xcode 26+ with iOS 26+ simulators.
Android
ProxyBillingActivity NullPointerException
- Typically from automated testing or Play Store pre-launch reports on LG Nexus 5X / rooted devices.
- Safe to ignore/silence in crash reporting tools.
NoCoreLibraryDesugaringException / NoClassDefFoundError
- Fix: Enable core library desugaring in
build.gradleor raiseminSdk.
Reference: platform configuration checklists
iOS
- [ ] Paid Applications agreement signed in App Store Connect.
- [ ] In-App Purchase Key uploaded to RevenueCat (StoreKit 2 / SDK 5.x+).
- [ ] Products show "Ready to Submit" or "Approved" status.
- [ ] Bundle ID matches exactly in Xcode, App Store Connect, and RevenueCat.
- [ ] New products: wait 24h for propagation.
Android
- [ ] App published to at least closed testing track (internal testing won't work).
- [ ] Test account added as licensed tester in Play Console.
- [ ] Service account credentials (JSON) uploaded to RevenueCat with Finance permissions.
- [ ] Subscriptions use
product_id:base_plan_idformat. - [ ] New products: wait 24h for propagation.
Reference: App Store rejection troubleshooting
"Issues fetching products" — Products must be submitted for review with the app on first submission. Create products in App Store Connect, then submit app and products together.
"Error during purchase" (Sandbox) — Apple sandbox downtime. Inform reviewer, provide RevenueCat sandbox dashboard screenshot showing test purchases work, ask to retry.
"Content not unlocked after purchase" — Verify product → entitlement connection in RevenueCat. Ensure app calls getCustomerInfo() after purchase.
Reference: common issues
User purchased but has no entitlement — Check product → entitlement attachment and verify store identifier matches exactly.
Offering returns empty — Verify a current offering exists, packages have products attached, and products exist in the app's store.
Webhook not receiving events — Verify URL is internet-accessible and returns 200 OK. Test with webhook.site.
Subscription status out of sync — SDK caches CustomerInfo for 5 min (foreground). Force refresh:
// iOS
Purchases.shared.getCustomerInfo(fetchPolicy: .fetchCurrent) { ... }
// Android
Purchases.sharedInstance.getCustomerInfoWith(CacheFetchPolicy.FETCH_CURRENT) { ... }
SDK crashes on launch (iOS / Xcode 26) — Initialize RevenueCat before other networking libraries.
SDK crashes on launch (Android) — Enable core library desugaring or raise minSdk to 24+.
原文・著作権は Anthropic および各プラグイン作者に帰属します。日本語訳は Claude API による自動翻訳です。