@infrab4a/connect-angular 4.17.0-beta.10 → 4.17.0-beta.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -2676,7 +2676,9 @@ AngularConnectModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", ve
|
|
|
2676
2676
|
], imports: [provideFirebaseApp((injector) => {
|
|
2677
2677
|
const appName = injector.get(FIREBASE_APP_NAME);
|
|
2678
2678
|
try {
|
|
2679
|
-
|
|
2679
|
+
const app = appName ? getApp(appName) : getApp();
|
|
2680
|
+
console.log('Connect initializeApp', app.name);
|
|
2681
|
+
return app;
|
|
2680
2682
|
}
|
|
2681
2683
|
catch (error) {
|
|
2682
2684
|
console.warn('Firebase app not found, initializing new app');
|
|
@@ -2689,6 +2691,7 @@ AngularConnectModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", ve
|
|
|
2689
2691
|
provideAppCheck((injector) => {
|
|
2690
2692
|
const app = injector.get(FirebaseApp);
|
|
2691
2693
|
console.log('Connect APP', app.name);
|
|
2694
|
+
console.log('Connect APP', JSON.stringify(app.options));
|
|
2692
2695
|
try {
|
|
2693
2696
|
const provider = injector.get(APP_CHECK_PROVIDER);
|
|
2694
2697
|
console.log('APP_CHECK_PROVIDER', provider);
|
|
@@ -2716,7 +2719,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.0", ngImpor
|
|
|
2716
2719
|
provideFirebaseApp((injector) => {
|
|
2717
2720
|
const appName = injector.get(FIREBASE_APP_NAME);
|
|
2718
2721
|
try {
|
|
2719
|
-
|
|
2722
|
+
const app = appName ? getApp(appName) : getApp();
|
|
2723
|
+
console.log('Connect initializeApp', app.name);
|
|
2724
|
+
return app;
|
|
2720
2725
|
}
|
|
2721
2726
|
catch (error) {
|
|
2722
2727
|
console.warn('Firebase app not found, initializing new app');
|
|
@@ -2729,6 +2734,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.0", ngImpor
|
|
|
2729
2734
|
provideAppCheck((injector) => {
|
|
2730
2735
|
const app = injector.get(FirebaseApp);
|
|
2731
2736
|
console.log('Connect APP', app.name);
|
|
2737
|
+
console.log('Connect APP', JSON.stringify(app.options));
|
|
2732
2738
|
try {
|
|
2733
2739
|
const provider = injector.get(APP_CHECK_PROVIDER);
|
|
2734
2740
|
console.log('APP_CHECK_PROVIDER', provider);
|