Connect RevenueCat to your Goodspeed app
In-app purchase and subscription management for iOS and Android: offerings, paywalls, and restore all wired at generation time. Goodspeed wires RevenueCat into every app that needs it at generation time, so you start with a working integration, not a blank config and a documentation tab.
WHAT GETS WIRED IN
Built into every RevenueCat build
Every app Goodspeed generates with RevenueCat includes these wired integrations from the first build. No manual setup required.
| Item | Description | Strength |
|---|---|---|
| Configured on first launch | Purchases.configure() runs at app start with the correct iOS or Android key read from gas.config.ts. | Payments |
| One identity across tools | identifyRevenueCatUser() runs alongside the analytics identify call on every login and signup, so purchase and behaviour data line up. | Payments |
| Cached offerings | getOfferings() holds its result for five minutes, so opening the paywall twice does not mean two network round trips. | Payments |
| Purchases with a full error surface | purchasePackage() and purchaseProduct() hand every failure state back to the paywall rather than swallowing it. | Payments |
| Restore after a reinstall | restorePurchases() is reachable from settings, so a new device or a reinstall does not cost someone what they already paid for. | Payments |
| Live entitlement checks | getCustomerInfo() is read wherever a premium gate appears, so access reflects the current subscription rather than a cached guess. | Payments |
Source: the Goodspeed app foundation · payments/subscriptions
REAL GENERATED CODE
A snippet from a RevenueCat integration the pipeline ships
This pattern is lifted from the engineered plumbing that ships inside every Goodspeed app. The studio generates RevenueCat integration code like this for every app that includes it, not a placeholder you have to fill in yourself.
Conditional IAP init
// lib/revenuecat.ts export async function initRevenueCat(): Promise<void> { if (isWeb || !Purchases) return; if (!gasConfig.features.inAppPurchases.enabled) return; const apiKey = Platform.OS === 'ios' ? gasConfig.backend.revenuecat.iosKey : gasConfig.backend.revenuecat.androidKey; if (!apiKey) return; await Purchases.configure({ apiKey }); }
Today's log
APPS THAT USE REVENUECAT
Where this integration ships
These app types include RevenueCat as part of the generated stack. Each link goes to a full spec page with capabilities, scored ideas, and a pipeline walkthrough.
- Build a fitness tracker appBuilding a fitness tracker means wiring together daily logging, progress charts, Apple Health, and push reminders. Goodspeed generates all of that in a single build, not a patchwork of tutorials. The FITNESS TRACKER APP
- Build a productivity appProductivity apps succeed when they remove friction from the moment the user decides to work. Goodspeed generates a productivity app with Pomodoro timer, focused task queue, distraction blocker hooks,PRODUCTIVITY APP
- Build a habit tracker appHabit trackers live or die on the loop: cue, routine, reward. Goodspeed generates a complete React Native habit tracker with streaks, reminders, and progress visualization, backed by Supabase so your HABIT TRACKER APP
START WITH REVENUECAT