// This file routes to the correct entry point based on flavor // For development flavor, use mainDev.dart // For production flavor, use mainProd.dart // This is a workaround for gradle builds that expect lib/main.dart // When building with flutter build command, use -t lib/mainDev.dart or -t lib/mainProd.dart void main() { throw Exception( 'Please build with: flutter build apk --flavor development -t lib/mainDev.dart\n' 'or: flutter build apk --flavor production -t lib/mainProd.dart'); }