I want to add a flutter app into my existing native app, which I am able to do succesfully using flutter docs. After this, I want to log crashes and other data using firebase for the flutter screens. Since normal implementation of Flutter Fire requires changes to be made in the android and iOS folders, but these folders do not exist in flutter project. So any ideas on how to do it?
How can we add Firebase Crashlytics in flutter where the flutter app is itself added to existing iOS and Android app?
823 Views Asked by ParasGarg At
1
There are 1 best solutions below
Related Questions in FIREBASE
- Firebase facebook authentication not working
- Add @JsonAutoDetect to third party lib and firebase Java lib
- firebase-import timing out?
- Understanding Firebase orderByChild
- Wait until Firebase retrieves data
- Firebase logout show Permission denied error.
- angular $firebaseArrray: difference between controller and directive
- Firebase: combine filtering with ordering in swift
- AngularJS - Firebase - Promise Error
- How to get simple list of devices on a Nest account using Firebase in Android?
- Event-Driven(Real - Time) mobile set-up suggestions
- How do you nest two of Polymer's firebase-collection elements inside dom-repeat?
- AngularFire Watch and Retrieve Item Key
- Firebase and AngularFire - $add in a array - unexpected behaviour
- Saving an html object to firebase
Related Questions in FLUTTER
- Bug report: Issue building flutter on a mac
- Is there a way to control where a Text widget overflow occurs (how many lines)?
- How to save to local storage using Flutter?
- How do you use a TextPainter to draw text?
- Passing command line arguments to a flutter app
- IconButton calling setState during onPressed shows no ripple effect
- What would be a good way for a widget to take 1/3 of the screen?
- How can I test a TextPainter?
- How can I inherit a StatefulWidget's State?
- Life cycle in flutter
- Preloading local image assets in Flutter
- Flutter app not able to run in IntelliJ
- Is there a way to call specific code right before the app is killed or moves to the background?
- How can I layout widgets based on the size of the parent?
- Multi-line TextField in Flutter
Related Questions in CRASHLYTICS
- FileNotFoundException after file created to stream output
- android build server with crashlytics
- Crashlytics : stuck on "Verifying Installation..." step
- Crashlytics for Android: Disable automatic upload of mapping file via Gradle build
- Android Crashlytics ndk; values of NdkOut and NdkLibsOut in build.gradle
- Crashlytics: All methods appear to be deprecated?
- CrashLytics prints some log message after initializing and crash logs are emailed
- Proper way to initialize Fabric.io for debugging/release
- WatchKit app hangs & crashes via Crashlytics
- Android crashes reported in DigitsActivity, DigitsActionBarActivity, FailureActivityDelegateImpl
- where to implement setUserIdentifier function from crashlytics in swift
- Android Crashlytics error NoClassDefFoundError
- How am I supposed to log exceptions with Fabric
- objc_msgSend [__NSArrayM dealloc] crash report sometimes from Crashlytics
- Does crashlytics have a public API?
Related Questions in FLUTTER-ADD-TO-APP
- While adding flutter to an existing android app, How could I use a different base URL in flutter_module based on `stage`, `prod` android flavor?
- Dart Unhandled Exception: NoSuchMethodError: No top-level getter 'xx' declared.Could not run the run main Dart entrypoint
- How to use a flutter module in a flutter app?
- Problem with "add to app": Could not launch engine with configuration
- Requested flutter engine does not exist in Add to app
- How to handle asynchronous error in 'Add to App' Flutter android application
- How to handle back button on appBar of Scaffold layout in flutter module and navigate to previous page on the host app
- Flutter: How do I reset navigation stack on a Flutter engine?
- Why webview_flutter not working in case of add to app (iOS)?
- How can I use performance profiling with a Flutter add-to-app app using Flutter Attach?
- How can we add Firebase Crashlytics in flutter where the flutter app is itself added to existing iOS and Android app?
- Wrap Flutter module in library to use it by other apps
- how to implement a flutter aar in android native application
- Module not found issue with package installed in flutter module (add-to-app)
- how to add Deep Link and Universal Link Support in Flutter?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
I had the same issue.
I solved by this way:
For example:
Native side in Swift:
Flutter side:
Remember, the crash only will send after reopen the app.