feat(build): add dev/staging/prod flavors for client_app + mitra_app
Android product flavors (.dev/.staging suffixes, prod clean) + per-flavor
Dart entrypoints, dart-define env files, and per-flavor Firebase config for
both platforms across 3 projects (halobestie-clone-dev / my-bestie-876ec /
my-bestie-production).
- Android: flavorDimensions("env") + productFlavors; @string/app_name label;
per-flavor src/<flavor>/google-services.json (clients verified to match each
applicationId).
- iOS: customer app re-based to the EXISTING App Store identity
com.asc.hallobestie (dev/staging suffix it; ships as an update to the live
app). mitra is a new app (com.mybestie.mitra). Per-flavor plists staged in
ios/config/<flavor>/; Xcode scheme wiring deferred (Mac follow-up).
- firebase_options_{dev,staging,prod}.dart filled with real android + iOS
values (regenerated from the native config files).
- BUILD_FLAVORS.md per app documents flavor table, build commands, iOS
identity decision, and the remaining iOS Xcode steps.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
125
mitra_app/lib/bootstrap.dart
Normal file
125
mitra_app/lib/bootstrap.dart
Normal file
@@ -0,0 +1,125 @@
|
||||
import 'package:firebase_core/firebase_core.dart';
|
||||
import 'package:firebase_messaging/firebase_messaging.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
||||
import 'core/api/api_client_provider.dart';
|
||||
import 'core/auth/auth_notifier.dart';
|
||||
import 'core/chat/mitra_chat_notifier.dart';
|
||||
import 'core/status/status_notifier.dart';
|
||||
import 'core/chat/chat_request_notifier.dart';
|
||||
import 'core/chat/widgets/chat_request_overlay.dart';
|
||||
import 'core/notifications/notification_service.dart';
|
||||
import 'core/theme/halo_theme.dart';
|
||||
import 'router.dart';
|
||||
|
||||
/// Shared app bootstrap used by every flavor entrypoint
|
||||
/// (main_dev / main_staging / main_prod). Each entrypoint passes the
|
||||
/// flavor's own [FirebaseOptions] and a [flavor] tag.
|
||||
Future<void> bootstrap({
|
||||
required FirebaseOptions firebaseOptions,
|
||||
required String flavor,
|
||||
}) async {
|
||||
WidgetsFlutterBinding.ensureInitialized();
|
||||
await Firebase.initializeApp(options: firebaseOptions);
|
||||
|
||||
final messaging = FirebaseMessaging.instance;
|
||||
await messaging.requestPermission();
|
||||
|
||||
runApp(const ProviderScope(child: App()));
|
||||
}
|
||||
|
||||
class App extends ConsumerStatefulWidget {
|
||||
const App({super.key});
|
||||
|
||||
@override
|
||||
ConsumerState<App> createState() => _AppState();
|
||||
}
|
||||
|
||||
class _AppState extends ConsumerState<App> with WidgetsBindingObserver {
|
||||
bool _fcmRegistered = false;
|
||||
// Session the chat WS was on at the moment we backgrounded. Restored on
|
||||
// resume so a backgrounded mitra reconnects to the same chat once they
|
||||
// foreground the app. Mirrors the customer-app fix (main.dart on the
|
||||
// client side) — backend's sendMessage checks recipient WS readyState
|
||||
// before falling back to FCM, so leaving the WS open while paused makes
|
||||
// FCM never fire and the mitra misses customer messages in background.
|
||||
String? _pausedChatSessionId;
|
||||
|
||||
@override
|
||||
void initState() {
|
||||
super.initState();
|
||||
WidgetsBinding.instance.addObserver(this);
|
||||
}
|
||||
|
||||
@override
|
||||
void dispose() {
|
||||
WidgetsBinding.instance.removeObserver(this);
|
||||
super.dispose();
|
||||
}
|
||||
|
||||
@override
|
||||
void didChangeAppLifecycleState(AppLifecycleState state) {
|
||||
if (state == AppLifecycleState.paused || state == AppLifecycleState.detached) {
|
||||
ref.read(onlineStatusProvider.notifier).onAppPaused();
|
||||
// Close the chat WS so backend `sendMessage` falls back to FCM when
|
||||
// the customer sends a message. Stash the active session_id so we
|
||||
// can rejoin it on resume.
|
||||
final chatNotifier = ref.read(mitraChatProvider.notifier);
|
||||
final sid = chatNotifier.connectedSessionId;
|
||||
if (sid != null) {
|
||||
_pausedChatSessionId = sid;
|
||||
chatNotifier.disconnect();
|
||||
}
|
||||
} else if (state == AppLifecycleState.resumed) {
|
||||
ref.read(onlineStatusProvider.notifier).onAppResumed();
|
||||
// Reconnect to the chat we backgrounded out of, if any.
|
||||
final saved = _pausedChatSessionId;
|
||||
_pausedChatSessionId = null;
|
||||
if (saved != null) {
|
||||
// ignore: discarded_futures
|
||||
ref.read(mitraChatProvider.notifier).connect(saved);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void _registerFcmToken() {
|
||||
if (_fcmRegistered) return;
|
||||
_fcmRegistered = true;
|
||||
Future(() async {
|
||||
try {
|
||||
final token = await FirebaseMessaging.instance.getToken();
|
||||
if (token != null) {
|
||||
await ref.read(apiClientProvider).post('/api/shared/device-token', data: {'token': token});
|
||||
}
|
||||
} catch (_) {
|
||||
_fcmRegistered = false;
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
// Listen for auth changes to load status and register FCM
|
||||
ref.listen(mitraAuthProvider, (prev, next) {
|
||||
final data = next.valueOrNull;
|
||||
if (data is MitraAuthAuthenticatedData) {
|
||||
ref.read(onlineStatusProvider.notifier).load();
|
||||
_registerFcmToken();
|
||||
}
|
||||
});
|
||||
|
||||
final router = ref.watch(routerProvider);
|
||||
NotificationService.initialize(router);
|
||||
NotificationService.onChatRequestTapped = (sessionId) {
|
||||
ref.read(chatRequestProvider.notifier).setIncomingFromNotification(sessionId);
|
||||
};
|
||||
|
||||
return ChatRequestOverlay(
|
||||
child: MaterialApp.router(
|
||||
title: 'Halo Bestie Mitra',
|
||||
theme: haloThemeData(),
|
||||
routerConfig: router,
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -1,23 +1,18 @@
|
||||
// File generated by FlutterFire CLI.
|
||||
// File generated by FlutterFire CLI (regenerated from the registered
|
||||
// dev Firebase apps — project halobestie-clone-dev).
|
||||
// ignore_for_file: type=lint
|
||||
import 'package:firebase_core/firebase_core.dart' show FirebaseOptions;
|
||||
import 'package:flutter/foundation.dart'
|
||||
show defaultTargetPlatform, kIsWeb, TargetPlatform;
|
||||
|
||||
/// Default [FirebaseOptions] for use with your Firebase apps.
|
||||
///
|
||||
/// Example:
|
||||
/// ```dart
|
||||
/// import 'firebase_options.dart';
|
||||
/// // ...
|
||||
/// await Firebase.initializeApp(
|
||||
/// options: DefaultFirebaseOptions.currentPlatform,
|
||||
/// );
|
||||
/// ```
|
||||
/// [FirebaseOptions] for the DEV environment (project halobestie-clone-dev).
|
||||
class DefaultFirebaseOptions {
|
||||
static FirebaseOptions get currentPlatform {
|
||||
if (kIsWeb) {
|
||||
return web;
|
||||
throw UnsupportedError(
|
||||
'DefaultFirebaseOptions have not been configured for web - '
|
||||
'you can reconfigure this by running the FlutterFire CLI again.',
|
||||
);
|
||||
}
|
||||
switch (defaultTargetPlatform) {
|
||||
case TargetPlatform.android:
|
||||
@@ -48,7 +43,7 @@ class DefaultFirebaseOptions {
|
||||
|
||||
static const FirebaseOptions android = FirebaseOptions(
|
||||
apiKey: 'AIzaSyDFWlLSWytqwI7LSdUbVrO7J5De9L2LV2U',
|
||||
appId: '1:1068156046511:android:f30784f6b0423131b8185a',
|
||||
appId: '1:1068156046511:android:f527c763dea3dc36b8185a',
|
||||
messagingSenderId: '1068156046511',
|
||||
projectId: 'halobestie-clone-dev',
|
||||
storageBucket: 'halobestie-clone-dev.firebasestorage.app',
|
||||
@@ -56,21 +51,10 @@ class DefaultFirebaseOptions {
|
||||
|
||||
static const FirebaseOptions ios = FirebaseOptions(
|
||||
apiKey: 'AIzaSyAQnB5hbj0T5tE4JQZQ9Tx6Whp_u15obMI',
|
||||
appId: '1:1068156046511:ios:b781f67a57d6db7bb8185a',
|
||||
appId: '1:1068156046511:ios:907b28451e22981db8185a',
|
||||
messagingSenderId: '1068156046511',
|
||||
projectId: 'halobestie-clone-dev',
|
||||
storageBucket: 'halobestie-clone-dev.firebasestorage.app',
|
||||
iosBundleId: 'com.mybestie.mitra',
|
||||
iosBundleId: 'com.mybestie.mitra.dev',
|
||||
);
|
||||
|
||||
static const FirebaseOptions web = FirebaseOptions(
|
||||
apiKey: 'AIzaSyAvDQp6xLOZHSwhaj9Zk3DjcMvQyX0Y7Oc',
|
||||
appId: '1:1068156046511:web:15b173b38aa563ceb8185a',
|
||||
messagingSenderId: '1068156046511',
|
||||
projectId: 'halobestie-clone-dev',
|
||||
authDomain: 'halobestie-clone-dev.firebaseapp.com',
|
||||
storageBucket: 'halobestie-clone-dev.firebasestorage.app',
|
||||
measurementId: 'G-FK3V0LB3TT',
|
||||
);
|
||||
|
||||
}
|
||||
}
|
||||
61
mitra_app/lib/firebase/firebase_options_prod.dart
Normal file
61
mitra_app/lib/firebase/firebase_options_prod.dart
Normal file
@@ -0,0 +1,61 @@
|
||||
// File generated by FlutterFire CLI (regenerated from the registered
|
||||
// prod Firebase apps — project my-bestie-production).
|
||||
// ignore_for_file: type=lint
|
||||
import 'package:firebase_core/firebase_core.dart' show FirebaseOptions;
|
||||
import 'package:flutter/foundation.dart'
|
||||
show defaultTargetPlatform, kIsWeb, TargetPlatform;
|
||||
|
||||
/// [FirebaseOptions] for the PROD environment (project my-bestie-production).
|
||||
class DefaultFirebaseOptions {
|
||||
static FirebaseOptions get currentPlatform {
|
||||
if (kIsWeb) {
|
||||
throw UnsupportedError(
|
||||
'DefaultFirebaseOptions have not been configured for web - '
|
||||
'you can reconfigure this by running the FlutterFire CLI again.',
|
||||
);
|
||||
}
|
||||
switch (defaultTargetPlatform) {
|
||||
case TargetPlatform.android:
|
||||
return android;
|
||||
case TargetPlatform.iOS:
|
||||
return ios;
|
||||
case TargetPlatform.macOS:
|
||||
throw UnsupportedError(
|
||||
'DefaultFirebaseOptions have not been configured for macos - '
|
||||
'you can reconfigure this by running the FlutterFire CLI again.',
|
||||
);
|
||||
case TargetPlatform.windows:
|
||||
throw UnsupportedError(
|
||||
'DefaultFirebaseOptions have not been configured for windows - '
|
||||
'you can reconfigure this by running the FlutterFire CLI again.',
|
||||
);
|
||||
case TargetPlatform.linux:
|
||||
throw UnsupportedError(
|
||||
'DefaultFirebaseOptions have not been configured for linux - '
|
||||
'you can reconfigure this by running the FlutterFire CLI again.',
|
||||
);
|
||||
default:
|
||||
throw UnsupportedError(
|
||||
'DefaultFirebaseOptions are not supported for this platform.',
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
static const FirebaseOptions android = FirebaseOptions(
|
||||
apiKey: 'AIzaSyAxAp8hcXO-P7HwwVsS3vFe0OX5ZkIyyWI',
|
||||
appId: '1:953866659887:android:a4b99d675b0b0315183eda',
|
||||
messagingSenderId: '953866659887',
|
||||
projectId: 'my-bestie-production',
|
||||
storageBucket: 'my-bestie-production.firebasestorage.app',
|
||||
);
|
||||
|
||||
static const FirebaseOptions ios = FirebaseOptions(
|
||||
apiKey: 'AIzaSyA8guPSD87eDLeCsH6jVd1n2_SI4_MaGNE',
|
||||
appId: '1:953866659887:ios:cd8dd704842f3489183eda',
|
||||
messagingSenderId: '953866659887',
|
||||
projectId: 'my-bestie-production',
|
||||
storageBucket: 'my-bestie-production.firebasestorage.app',
|
||||
iosClientId: '953866659887-i0atpahlpqt6r9id17hjeirt5j1uqu8k.apps.googleusercontent.com',
|
||||
iosBundleId: 'com.mybestie.mitra',
|
||||
);
|
||||
}
|
||||
61
mitra_app/lib/firebase/firebase_options_staging.dart
Normal file
61
mitra_app/lib/firebase/firebase_options_staging.dart
Normal file
@@ -0,0 +1,61 @@
|
||||
// File generated by FlutterFire CLI (regenerated from the registered
|
||||
// staging Firebase apps — project my-bestie-876ec).
|
||||
// ignore_for_file: type=lint
|
||||
import 'package:firebase_core/firebase_core.dart' show FirebaseOptions;
|
||||
import 'package:flutter/foundation.dart'
|
||||
show defaultTargetPlatform, kIsWeb, TargetPlatform;
|
||||
|
||||
/// [FirebaseOptions] for the STAGING environment (project my-bestie-876ec).
|
||||
class DefaultFirebaseOptions {
|
||||
static FirebaseOptions get currentPlatform {
|
||||
if (kIsWeb) {
|
||||
throw UnsupportedError(
|
||||
'DefaultFirebaseOptions have not been configured for web - '
|
||||
'you can reconfigure this by running the FlutterFire CLI again.',
|
||||
);
|
||||
}
|
||||
switch (defaultTargetPlatform) {
|
||||
case TargetPlatform.android:
|
||||
return android;
|
||||
case TargetPlatform.iOS:
|
||||
return ios;
|
||||
case TargetPlatform.macOS:
|
||||
throw UnsupportedError(
|
||||
'DefaultFirebaseOptions have not been configured for macos - '
|
||||
'you can reconfigure this by running the FlutterFire CLI again.',
|
||||
);
|
||||
case TargetPlatform.windows:
|
||||
throw UnsupportedError(
|
||||
'DefaultFirebaseOptions have not been configured for windows - '
|
||||
'you can reconfigure this by running the FlutterFire CLI again.',
|
||||
);
|
||||
case TargetPlatform.linux:
|
||||
throw UnsupportedError(
|
||||
'DefaultFirebaseOptions have not been configured for linux - '
|
||||
'you can reconfigure this by running the FlutterFire CLI again.',
|
||||
);
|
||||
default:
|
||||
throw UnsupportedError(
|
||||
'DefaultFirebaseOptions are not supported for this platform.',
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
static const FirebaseOptions android = FirebaseOptions(
|
||||
apiKey: 'AIzaSyAOPkPJkHXLFzo9ICOHyjee2Vn_EUqt1Pc',
|
||||
appId: '1:650461407929:android:7571ae8d5036de5d504968',
|
||||
messagingSenderId: '650461407929',
|
||||
projectId: 'my-bestie-876ec',
|
||||
storageBucket: 'my-bestie-876ec.firebasestorage.app',
|
||||
);
|
||||
|
||||
static const FirebaseOptions ios = FirebaseOptions(
|
||||
apiKey: 'AIzaSyC_BewS88iaNsc9QdwsPzkV0sf9wUs4i_4',
|
||||
appId: '1:650461407929:ios:b273bda6ad4045ca504968',
|
||||
messagingSenderId: '650461407929',
|
||||
projectId: 'my-bestie-876ec',
|
||||
storageBucket: 'my-bestie-876ec.firebasestorage.app',
|
||||
iosClientId: '650461407929-kuc6m53nehsa677geu57f3fmn9ql6lbg.apps.googleusercontent.com',
|
||||
iosBundleId: 'com.mybestie.mitra.staging',
|
||||
);
|
||||
}
|
||||
@@ -1,120 +1,15 @@
|
||||
import 'package:firebase_core/firebase_core.dart';
|
||||
import 'package:firebase_messaging/firebase_messaging.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
||||
import 'core/api/api_client_provider.dart';
|
||||
import 'core/auth/auth_notifier.dart';
|
||||
import 'core/chat/mitra_chat_notifier.dart';
|
||||
import 'core/status/status_notifier.dart';
|
||||
import 'core/chat/chat_request_notifier.dart';
|
||||
import 'core/chat/widgets/chat_request_overlay.dart';
|
||||
import 'core/notifications/notification_service.dart';
|
||||
import 'core/theme/halo_theme.dart';
|
||||
import 'firebase_options.dart';
|
||||
import 'router.dart';
|
||||
import 'bootstrap.dart';
|
||||
import 'firebase/firebase_options_dev.dart';
|
||||
|
||||
void main() async {
|
||||
WidgetsFlutterBinding.ensureInitialized();
|
||||
await Firebase.initializeApp(options: DefaultFirebaseOptions.currentPlatform);
|
||||
|
||||
final messaging = FirebaseMessaging.instance;
|
||||
await messaging.requestPermission();
|
||||
|
||||
runApp(const ProviderScope(child: App()));
|
||||
}
|
||||
|
||||
class App extends ConsumerStatefulWidget {
|
||||
const App({super.key});
|
||||
|
||||
@override
|
||||
ConsumerState<App> createState() => _AppState();
|
||||
}
|
||||
|
||||
class _AppState extends ConsumerState<App> with WidgetsBindingObserver {
|
||||
bool _fcmRegistered = false;
|
||||
// Session the chat WS was on at the moment we backgrounded. Restored on
|
||||
// resume so a backgrounded mitra reconnects to the same chat once they
|
||||
// foreground the app. Mirrors the customer-app fix (main.dart on the
|
||||
// client side) — backend's sendMessage checks recipient WS readyState
|
||||
// before falling back to FCM, so leaving the WS open while paused makes
|
||||
// FCM never fire and the mitra misses customer messages in background.
|
||||
String? _pausedChatSessionId;
|
||||
|
||||
@override
|
||||
void initState() {
|
||||
super.initState();
|
||||
WidgetsBinding.instance.addObserver(this);
|
||||
}
|
||||
|
||||
@override
|
||||
void dispose() {
|
||||
WidgetsBinding.instance.removeObserver(this);
|
||||
super.dispose();
|
||||
}
|
||||
|
||||
@override
|
||||
void didChangeAppLifecycleState(AppLifecycleState state) {
|
||||
if (state == AppLifecycleState.paused || state == AppLifecycleState.detached) {
|
||||
ref.read(onlineStatusProvider.notifier).onAppPaused();
|
||||
// Close the chat WS so backend `sendMessage` falls back to FCM when
|
||||
// the customer sends a message. Stash the active session_id so we
|
||||
// can rejoin it on resume.
|
||||
final chatNotifier = ref.read(mitraChatProvider.notifier);
|
||||
final sid = chatNotifier.connectedSessionId;
|
||||
if (sid != null) {
|
||||
_pausedChatSessionId = sid;
|
||||
chatNotifier.disconnect();
|
||||
}
|
||||
} else if (state == AppLifecycleState.resumed) {
|
||||
ref.read(onlineStatusProvider.notifier).onAppResumed();
|
||||
// Reconnect to the chat we backgrounded out of, if any.
|
||||
final saved = _pausedChatSessionId;
|
||||
_pausedChatSessionId = null;
|
||||
if (saved != null) {
|
||||
// ignore: discarded_futures
|
||||
ref.read(mitraChatProvider.notifier).connect(saved);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void _registerFcmToken() {
|
||||
if (_fcmRegistered) return;
|
||||
_fcmRegistered = true;
|
||||
Future(() async {
|
||||
try {
|
||||
final token = await FirebaseMessaging.instance.getToken();
|
||||
if (token != null) {
|
||||
await ref.read(apiClientProvider).post('/api/shared/device-token', data: {'token': token});
|
||||
}
|
||||
} catch (_) {
|
||||
_fcmRegistered = false;
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
// Listen for auth changes to load status and register FCM
|
||||
ref.listen(mitraAuthProvider, (prev, next) {
|
||||
final data = next.valueOrNull;
|
||||
if (data is MitraAuthAuthenticatedData) {
|
||||
ref.read(onlineStatusProvider.notifier).load();
|
||||
_registerFcmToken();
|
||||
}
|
||||
});
|
||||
|
||||
final router = ref.watch(routerProvider);
|
||||
NotificationService.initialize(router);
|
||||
NotificationService.onChatRequestTapped = (sessionId) {
|
||||
ref.read(chatRequestProvider.notifier).setIncomingFromNotification(sessionId);
|
||||
};
|
||||
|
||||
return ChatRequestOverlay(
|
||||
child: MaterialApp.router(
|
||||
title: 'Halo Bestie Mitra',
|
||||
theme: haloThemeData(),
|
||||
routerConfig: router,
|
||||
),
|
||||
/// Default entrypoint — delegates to the DEV flavor so a bare `flutter run`
|
||||
/// (without -t) still works during local development. The `App` widget and the
|
||||
/// shared startup logic now live in [bootstrap].
|
||||
///
|
||||
/// For an explicit flavor, use the dedicated entrypoints instead:
|
||||
/// - lib/main_dev.dart (flutter run --flavor dev -t lib/main_dev.dart --dart-define-from-file=env/dev.json)
|
||||
/// - lib/main_staging.dart (flutter run --flavor staging -t lib/main_staging.dart --dart-define-from-file=env/staging.json)
|
||||
/// - lib/main_prod.dart (flutter run --flavor prod -t lib/main_prod.dart --dart-define-from-file=env/prod.json)
|
||||
Future<void> main() => bootstrap(
|
||||
firebaseOptions: DefaultFirebaseOptions.currentPlatform,
|
||||
flavor: 'dev',
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
9
mitra_app/lib/main_dev.dart
Normal file
9
mitra_app/lib/main_dev.dart
Normal file
@@ -0,0 +1,9 @@
|
||||
import 'bootstrap.dart';
|
||||
import 'firebase/firebase_options_dev.dart';
|
||||
|
||||
/// DEV flavor entrypoint.
|
||||
/// Run: flutter run --flavor dev -t lib/main_dev.dart --dart-define-from-file=env/dev.json
|
||||
Future<void> main() => bootstrap(
|
||||
firebaseOptions: DefaultFirebaseOptions.currentPlatform,
|
||||
flavor: 'dev',
|
||||
);
|
||||
9
mitra_app/lib/main_prod.dart
Normal file
9
mitra_app/lib/main_prod.dart
Normal file
@@ -0,0 +1,9 @@
|
||||
import 'bootstrap.dart';
|
||||
import 'firebase/firebase_options_prod.dart';
|
||||
|
||||
/// PROD flavor entrypoint.
|
||||
/// Run: flutter run --flavor prod -t lib/main_prod.dart --dart-define-from-file=env/prod.json
|
||||
Future<void> main() => bootstrap(
|
||||
firebaseOptions: DefaultFirebaseOptions.currentPlatform,
|
||||
flavor: 'prod',
|
||||
);
|
||||
9
mitra_app/lib/main_staging.dart
Normal file
9
mitra_app/lib/main_staging.dart
Normal file
@@ -0,0 +1,9 @@
|
||||
import 'bootstrap.dart';
|
||||
import 'firebase/firebase_options_staging.dart';
|
||||
|
||||
/// STAGING flavor entrypoint.
|
||||
/// Run: flutter run --flavor staging -t lib/main_staging.dart --dart-define-from-file=env/staging.json
|
||||
Future<void> main() => bootstrap(
|
||||
firebaseOptions: DefaultFirebaseOptions.currentPlatform,
|
||||
flavor: 'staging',
|
||||
);
|
||||
Reference in New Issue
Block a user