When moving to production, you’ll need to set a different RPID based on additional factors.
2
Configure ProjectID
Configure your project ID in the config file:
lib/config.dart
Copy
Ask AI
// if you want to override the used projectID change thisconst PROJECT_ID = "<Your ProjectID>";String getProjectID() { if (PROJECT_ID.isNotEmpty && PROJECT_ID.startsWith("pro-")) { return PROJECT_ID; } // These are default values if (kIsWeb) { return 'pro-8751299119685489253'; } else { return 'pro-4268394291597054564'; }}