Files
mywhatsapp/whatsapp_app/lib/firebase_options.dart
2026-05-18 15:45:07 +03:00

87 lines
2.9 KiB
Dart

// 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(
apiKey: 'AIzaSyBwxlFBkdejkm_H5mMAeTK30fuReZ4EeRU',
appId: '1:146827764316:web:99b4d29684ee9a26843c99',
messagingSenderId: '146827764316',
projectId: 'mywhatsapp-inta',
authDomain: 'mywhatsapp-inta.firebaseapp.com',
storageBucket: 'mywhatsapp-inta.firebasestorage.app',
);
static const FirebaseOptions android = FirebaseOptions(
apiKey: 'AIzaSyBqCFyXUfd1VjX3htG0Z_-gH4hFOkG31C0',
appId: '1:146827764316:android:75425f8baccb6891843c99',
messagingSenderId: '146827764316',
projectId: 'mywhatsapp-inta',
storageBucket: 'mywhatsapp-inta.firebasestorage.app',
);
static const FirebaseOptions ios = FirebaseOptions(
apiKey: 'AIzaSyDZhiD8lCsi5fa-IB199rY4C3MoYn2X4hQ',
appId: '1:146827764316:ios:c240ccd825bdb66d843c99',
messagingSenderId: '146827764316',
projectId: 'mywhatsapp-inta',
storageBucket: 'mywhatsapp-inta.firebasestorage.app',
iosBundleId: 'com.intaleqapp.mywhatsapp',
);
static const FirebaseOptions macos = FirebaseOptions(
apiKey: 'AIzaSyDZhiD8lCsi5fa-IB199rY4C3MoYn2X4hQ',
appId: '1:146827764316:ios:c240ccd825bdb66d843c99',
messagingSenderId: '146827764316',
projectId: 'mywhatsapp-inta',
storageBucket: 'mywhatsapp-inta.firebasestorage.app',
iosBundleId: 'com.intaleqapp.mywhatsapp',
);
static const FirebaseOptions windows = FirebaseOptions(
apiKey: 'AIzaSyBwxlFBkdejkm_H5mMAeTK30fuReZ4EeRU',
appId: '1:146827764316:web:8812ccd133ed647e843c99',
messagingSenderId: '146827764316',
projectId: 'mywhatsapp-inta',
authDomain: 'mywhatsapp-inta.firebaseapp.com',
storageBucket: 'mywhatsapp-inta.firebasestorage.app',
);
}