allscore_app/lib/firebase_options.dart

98 lines
3.8 KiB
Dart
Raw Permalink Normal View History

2025-01-07 13:38:36 +00:00
// File generated by FlutterFire CLI.
// 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,
/// );
/// ```
class DefaultFirebaseOptions {
static FirebaseOptions get currentPlatform {
if (kIsWeb) {
return web;
}
switch (defaultTargetPlatform) {
case TargetPlatform.android:
return android;
case TargetPlatform.iOS:
return ios;
case TargetPlatform.macOS:
return macos;
case TargetPlatform.windows:
return windows;
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 web = FirebaseOptions(
2025-01-14 10:32:42 +00:00
apiKey: 'AIzaSyCZx2yNaMmMXSFcdNGpl29NerG2PweszWI',
appId: '1:452355332155:web:5407f79d500818e713e41e',
messagingSenderId: '452355332155',
projectId: 'allscore-29edf',
authDomain: 'allscore-29edf.firebaseapp.com',
databaseURL: 'https://allscore-29edf-default-rtdb.asia-southeast1.firebasedatabase.app',
storageBucket: 'allscore-29edf.firebasestorage.app',
measurementId: 'G-63H3D8MNM8',
2025-01-07 13:38:36 +00:00
);
static const FirebaseOptions android = FirebaseOptions(
2025-01-14 10:32:42 +00:00
apiKey: 'AIzaSyB6hil7Nrk8wslHDfRNRRyw6rQktY16tTc',
appId: '1:452355332155:android:152995468604d10d13e41e',
messagingSenderId: '452355332155',
projectId: 'allscore-29edf',
databaseURL: 'https://allscore-29edf-default-rtdb.asia-southeast1.firebasedatabase.app',
storageBucket: 'allscore-29edf.firebasestorage.app',
2025-01-07 13:38:36 +00:00
);
static const FirebaseOptions ios = FirebaseOptions(
2025-01-14 10:32:42 +00:00
apiKey: 'AIzaSyBL1ceaAYfhTpRU2C__HwKkF7cJHhxlpPg',
appId: '1:452355332155:ios:a7b2fc75e3513e3413e41e',
messagingSenderId: '452355332155',
projectId: 'allscore-29edf',
databaseURL: 'https://allscore-29edf-default-rtdb.asia-southeast1.firebasedatabase.app',
storageBucket: 'allscore-29edf.firebasestorage.app',
androidClientId: '452355332155-t29ceato8o62c9kq9drefe7b6hd1ka1d.apps.googleusercontent.com',
iosClientId: '452355332155-fo49j1u3qfup1sa3gj33bko6q269pqo4.apps.googleusercontent.com',
2025-01-07 13:38:36 +00:00
iosBundleId: 'com.example.allscoreApp',
);
static const FirebaseOptions macos = FirebaseOptions(
2025-01-14 10:32:42 +00:00
apiKey: 'AIzaSyBL1ceaAYfhTpRU2C__HwKkF7cJHhxlpPg',
appId: '1:452355332155:ios:a7b2fc75e3513e3413e41e',
messagingSenderId: '452355332155',
projectId: 'allscore-29edf',
databaseURL: 'https://allscore-29edf-default-rtdb.asia-southeast1.firebasedatabase.app',
storageBucket: 'allscore-29edf.firebasestorage.app',
androidClientId: '452355332155-t29ceato8o62c9kq9drefe7b6hd1ka1d.apps.googleusercontent.com',
iosClientId: '452355332155-fo49j1u3qfup1sa3gj33bko6q269pqo4.apps.googleusercontent.com',
2025-01-07 13:38:36 +00:00
iosBundleId: 'com.example.allscoreApp',
);
static const FirebaseOptions windows = FirebaseOptions(
2025-01-14 10:32:42 +00:00
apiKey: 'AIzaSyCZx2yNaMmMXSFcdNGpl29NerG2PweszWI',
appId: '1:452355332155:web:5e08c9caf8d07e2c13e41e',
messagingSenderId: '452355332155',
projectId: 'allscore-29edf',
authDomain: 'allscore-29edf.firebaseapp.com',
databaseURL: 'https://allscore-29edf-default-rtdb.asia-southeast1.firebasedatabase.app',
storageBucket: 'allscore-29edf.firebasestorage.app',
measurementId: 'G-MWXRMG174T',
2025-01-07 13:38:36 +00:00
);
2025-01-14 10:32:42 +00:00
}