Osei Fortune
                                            Osei Fortune
                                        
                                    Sounds like it's being cleared before the app starts
Can you try pinning the version to `2.4.4`
Do you have any custom delegates and where is the `initializeApp` called ?
Possible to share the entire main.js ?
Hey @meganedesigns sorry for the late reply, the store seems to be the next place to check since it's possible it may be doing something before the app launches
@souriscloud sorry to hear but helps us to help you :)
@shirakaba Interesting find, another thing u can do after applying Jamie's suggestion is try moving the firebase init after `facebook` and `google` sdk init calls
You need to call the following before using the other packages ```ts import { firebase } from '@nativescript/firebase-core' firebase().initializeApp(); ```
@kefahB is it possible to show me your use case? . Curious where the next firebase call is.
If there is no sharedApplication usually the case when initializeApp is called early in the project the initialize method is added to a queue to be called when the app...