import { RampKit } from "rampkit-expo-dev";
import Superwall from "@superwall/react-native-superwall";
// Initialize Superwall first
Superwall.configure({ apiKey: "YOUR_SUPERWALL_KEY" });
// Then RampKit
await RampKit.init({
appId: "YOUR_APP_ID",
onShowPaywall: async () => {
await Superwall.shared.register({ event: "onboarding_paywall" });
},
});