Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Configure app settings
app.json
eas.json
lib/config.ts
.env
{ "expo": { "name": "Your App", "slug": "your-app", "ios": { "bundleIdentifier": "com.yourcompany.yourapp" } } }
export const config = { supabase: { url: process.env.EXPO_PUBLIC_SUPABASE_URL, publishableKey: process.env.EXPO_PUBLIC_SUPABASE_PUBLISHABLE_KEY, }, revenueCat: { apiKey: process.env.EXPO_PUBLIC_REVENUECAT_API_KEY, }, };
EXPO_PUBLIC_