From 2db67e7ce6ea1930c4524569df7f1b658c1caeee Mon Sep 17 00:00:00 2001 From: Stefano Saitta Date: Mon, 8 Jul 2019 16:48:57 +0200 Subject: [PATCH 1/4] Add the result section for successfully installations This section will give feedback on when the installation goes fine, plus informing user that `firebase` takes a while to display the collected crashes into the Firebase Console, since the time is quite long (almost a day) i think it's better to give a feedback here. --- packages/firebase_crashlytics/README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/packages/firebase_crashlytics/README.md b/packages/firebase_crashlytics/README.md index 71161efa99db..f60f6f5cad06 100644 --- a/packages/firebase_crashlytics/README.md +++ b/packages/firebase_crashlytics/README.md @@ -93,6 +93,16 @@ void main() { } ``` +## Result + +If an error is catched correctly, you should see this log: +``` +flutter: Error caught by Crashlytics plugin: +flutter: Error reported to Crashlytics. +``` + +*Note:* It will takes a while (up to 24h) before you will be able to see your logs in your firebase console. + ## Example See the [example application](https://github.com/flutter/plugins/tree/master/packages/firebase_crashlytics/example) source From 6c68af769f977c60595615db5df9c4091817afff Mon Sep 17 00:00:00 2001 From: Collin Jackson Date: Mon, 8 Jul 2019 09:45:13 -0700 Subject: [PATCH 2/4] Update README.md --- packages/firebase_crashlytics/README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/packages/firebase_crashlytics/README.md b/packages/firebase_crashlytics/README.md index f60f6f5cad06..784a4330e003 100644 --- a/packages/firebase_crashlytics/README.md +++ b/packages/firebase_crashlytics/README.md @@ -95,13 +95,14 @@ void main() { ## Result -If an error is catched correctly, you should see this log: +If an error is caught, you should see the following messages in your logs: ``` flutter: Error caught by Crashlytics plugin: +... flutter: Error reported to Crashlytics. ``` -*Note:* It will takes a while (up to 24h) before you will be able to see your logs in your firebase console. +*Note:* It may take awhile (up to 24 hours) before you will be able to see the logs appear in your Firebase console. ## Example From 6c677bce41947585cc9a090b76062abeab419af3 Mon Sep 17 00:00:00 2001 From: Collin Jackson Date: Mon, 8 Jul 2019 09:45:30 -0700 Subject: [PATCH 3/4] Update pubspec.yaml --- packages/firebase_crashlytics/pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/firebase_crashlytics/pubspec.yaml b/packages/firebase_crashlytics/pubspec.yaml index dadc332573cc..7510f37b167a 100644 --- a/packages/firebase_crashlytics/pubspec.yaml +++ b/packages/firebase_crashlytics/pubspec.yaml @@ -1,7 +1,7 @@ name: firebase_crashlytics description: Flutter plugin for Firebase Crashlytics. It reports uncaught errors to the Firebase console. -version: 0.0.4+9 +version: 0.0.4+10 author: Flutter Team homepage: https://github.com/flutter/plugins/tree/master/packages/firebase_crashlytics From 2befcf7cb0524f20859b6cfa0dbd2091544cee7c Mon Sep 17 00:00:00 2001 From: Collin Jackson Date: Mon, 8 Jul 2019 09:46:09 -0700 Subject: [PATCH 4/4] Update CHANGELOG.md --- packages/firebase_crashlytics/CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/packages/firebase_crashlytics/CHANGELOG.md b/packages/firebase_crashlytics/CHANGELOG.md index 65bb0a398ba4..124b410f9881 100644 --- a/packages/firebase_crashlytics/CHANGELOG.md +++ b/packages/firebase_crashlytics/CHANGELOG.md @@ -1,3 +1,7 @@ +## 0.0.4+10 + +* Update README. + ## 0.0.4+9 * Fixed custom keys implementation.