You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/PULL_REQUEST_TEMPLATE.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,6 +11,7 @@
11
11
Before you create this PR confirm that it meets all requirements listed below by checking the relevant checkboxes (`[x]`). This will ensure a smooth and quick review process.
12
12
13
13
-[ ] I read the [Contributor Guide] and followed the process outlined there for submitting PRs.
14
+
-[ ] If the pull request affects only one plugin, the PR title starts with the name of the plugin in brackets (e.g. [cloud_firestore])
14
15
-[ ] My PR includes unit or integration tests for *all* changed/updated/fixed behaviors (See [Contributor Guide]).
15
16
-[ ] All existing and new tests are passing.
16
17
-[ ] I updated/added relevant documentation (doc comments with `///`).
@@ -31,7 +32,7 @@ Does your PR require plugin users to manually update their apps to accommodate y
FlutterFire is a set of [Flutter plugins](https://flutter.io/platform-plugins/)
6
6
that enable Flutter apps to use one or more [Firebase](https://firebase.google.com/) services. You can follow an example that shows how to use these plugins in the [Firebase for Flutter](https://codelabs.developers.google.com/codelabs/flutter-firebase/index.html#0) codelab.
7
7
8
-
[Flutter](https://flutter.io) is a new mobile app SDK to help developers and
9
-
designers build modern mobile apps for iOS and Android.
8
+
[Flutter](https://flutter.dev) is Google's mobile app SDK for crafting high-quality native interfaces on iOS and Android in record time. Flutter works with existing code, is used by developers and organizations around the world, and is free and open source.
10
9
11
-
*Note*: The plugins are still under development, and some APIs might not be available yet.
12
-
[Feedback](https://github.com/flutter/flutter/issues) and [Pull Requests](https://github.com/flutter/plugins/pulls) are most welcome!
10
+
*Note*: FlutterFire plugins are still under development, and some APIs might not be available yet.
11
+
[Feedback](https://github.com/FirebaseExtended/flutterfire/issues) and [Pull Requests](https://github.com/FirebaseExtended/flutterfire/pulls) are most welcome!
13
12
14
13
## Available FlutterFire plugins
15
14
@@ -24,7 +23,7 @@ designers build modern mobile apps for iOS and Android.
|[firebase_ml_vision][ml_vision_pub]|![pub package][ml_vision_badge]|[Firebase ML Kit][ml_vision_product]|[`packages/firebase_ml_vision`][ml_vision_code]|
For Flutter plugins for other Firebase products, see [FlutterFire.md](https://github.com/flutter/plugins/blob/master/FlutterFire.md).
7
+
For Flutter plugins for other Firebase products, see [README.md](https://github.com/FirebaseExtended/flutterfire/blob/master/README.md).
8
8
9
-
*Note*: This plugin is still under development, and some APIs might not be available yet. [Feedback](https://github.com/flutter/flutter/issues) and [Pull Requests](https://github.com/flutter/plugins/pulls) are most welcome!
9
+
*Note*: This plugin is still under development, and some APIs might not be available yet. [Feedback](https://github.com/FirebaseExtended/flutterfire/issues) and [Pull Requests](https://github.com/FirebaseExtended/flutterfire/pulls) are most welcome!
Copy file name to clipboardExpand all lines: packages/cloud_firestore/android/src/main/java/io/flutter/plugins/firebase/cloudfirestore/CloudFirestorePlugin.java
+38-18Lines changed: 38 additions & 18 deletions
Original file line number
Diff line number
Diff line change
@@ -474,7 +474,7 @@ public void run() {
474
474
result.success(snapshotMap);
475
475
}
476
476
});
477
-
} catch (finalFirebaseFirestoreExceptione) {
477
+
} catch (finalExceptione) {
478
478
activity.runOnUiThread(
479
479
newRunnable() {
480
480
@Override
@@ -506,7 +506,7 @@ public void run() {
506
506
result.success(null);
507
507
}
508
508
});
509
-
} catch (finalIllegalStateExceptione) {
509
+
} catch (finalExceptione) {
510
510
activity.runOnUiThread(
511
511
newRunnable() {
512
512
@Override
@@ -529,14 +529,24 @@ public void run() {
529
529
@Override
530
530
protectedVoiddoInBackground(Void... voids) {
531
531
Map<String, Object> data = (Map<String, Object>) arguments.get("data");
0 commit comments