-
Notifications
You must be signed in to change notification settings - Fork 4k
[firebase_crashlytics] Migrate to new Crashlytics SDK #2288
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Changes from 26 commits
Commits
Show all changes
29 commits
Select commit
Hold shift + click to select a range
29b6498
[crashlytics] Migrate to new Crashlytics SDK
axel-op 3cafc46
[crashlytics] Migration to new SDK: update Obj-C files
axel-op 9346447
Update generateFrame method
axel-op bc7c7a7
Remove getVersion and isDebuggable
axel-op d03e47b
Wrong call to argument
axel-op e359b09
Missing semicolons
axel-op 28891ae
Use recordExceptionModel instead of recordError
axel-op ec3cc0f
Update project.pbxproj
axel-op 7685fe0
Don't call [FIRApp configure] twice
axel-op 7cf3512
Format
axel-op 0628c26
Update Gradle dependency
axel-op 6386231
Update README
axel-op c117ec0
Update README.md
axel-op 5a46b56
Add documentation
axel-op 03facb5
Update CHANGELOG.md
axel-op 146ba8f
Edit Gradle plugin version
axel-op 3c571ed
Update README.md
axel-op de71916
Replace `runZoned` by `runZonedGuarded` and update SDK constraints
axel-op fa6501d
Update Flutter SDK constraints
axel-op 0cfa894
Update CHANGELOG.md
axel-op d69d918
Update UIApplicationDelegate for example iOs app
axel-op 4fc4835
Fix bug about key extraction on iOs
axel-op bda47bc
Implement [setCustomKey] on Dart side
axel-op 497e3f9
Update packages/firebase_crashlytics/CHANGELOG.md
axel-op 1adeca9
Check that [value] passed to [setCustomKey] is not null
axel-op 324dcf6
Update CHANGELOG
axel-op 1ae9cab
Merge remote-tracking branch 'upstream/master' into crashlytics-new-sdk
axel-op 0c883fa
Send logs and keys are they are set
axel-op 66d2d14
Update tests
axel-op File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This dependency is already in the
firebase_crashlytics
package./android/build.gradle
file, right? We don't need to add it to our Flutter app build.gradle file IMO.Update: Works fine without it in my case. I don't think the whole fourth step is needed. It's even a bit confusing and misleading to add the
firebase-analytics
dependency too here since it's not necessary for Firebase Crashlytics to work.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah if it's already a dependency used by the plugin then developers shouldn't need to add it to their app's build.gradle file
cc @axel-op
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ditto for the
firebase_analytics
! I don't like the way the official documentation like this: https://firebase.google.com/docs/flutter/setup?platform=iosEncourages other packages. It just leads to possible reader confusion.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This will be updated when the package will depend on the new versions of
firebase_core
.