Rumahjo-Android-APP/lib/firebase_options.dart
2024-09-07 07:58:50 +07:00

78 lines
2.8 KiB
Dart

// File generated by FlutterFire CLI.
// ignore_for_file: lines_longer_than_80_chars, avoid_classes_with_only_static_members
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:
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 web = FirebaseOptions(
apiKey: 'AIzaSyAP4lTOZVNyMOo18MYObKOq9W9Ewj-M-6A',
appId: '1:981964114588:web:a618051aeb014542abfb59',
messagingSenderId: '981964114588',
projectId: 'rumahjo123-28a54',
authDomain: 'rumahjo123-28a54.firebaseapp.com',
storageBucket: 'rumahjo123-28a54.appspot.com',
measurementId: 'G-BB0WSX6E1D',
);
static const FirebaseOptions android = FirebaseOptions(
apiKey: 'AIzaSyBVM2DvCSmwfkwydzfxVgr5IIQyKdSiGx0',
appId: '1:981964114588:android:bb609c3b3d377c07abfb59',
messagingSenderId: '981964114588',
projectId: 'rumahjo123-28a54',
storageBucket: 'rumahjo123-28a54.appspot.com',
);
static const FirebaseOptions ios = FirebaseOptions(
apiKey: 'AIzaSyAc9oMfPDPriUh37lbTdVc2xXV_TLFWgSY',
appId: '1:981964114588:ios:6bbab471426bea35abfb59',
messagingSenderId: '981964114588',
projectId: 'rumahjo123-28a54',
storageBucket: 'rumahjo123-28a54.appspot.com',
androidClientId: '981964114588-uh3jjk48ug414f130uq44860qsdd5p0s.apps.googleusercontent.com',
iosClientId: '981964114588-lgetp58i4h4q640vk9jh563ss69vcf0j.apps.googleusercontent.com',
iosBundleId: 'com.ebroker.wrteam',
);
}