Skip to content

Commit 296cd49

Browse files
committed
Merge remote-tracking branch 'origin/master' into flutter/plugins#849
2 parents 53095f7 + 4157ee3 commit 296cd49

File tree

170 files changed

+2565
-343
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

170 files changed

+2565
-343
lines changed

.ci/Dockerfile

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
2+
FROM cirrusci/flutter:latest
3+
4+
RUN yes | sdkmanager \
5+
"platforms;android-27" \
6+
"build-tools;27.0.3" \
7+
"extras;google;m2repository" \
8+
"extras;android;m2repository" \
9+
"system-images;android-21;default;armeabi-v7a"
10+
11+
RUN yes | sdkmanager --licenses

.cirrus.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@ task:
2222
test_script: ./script/incremental_build.sh test
2323
- name: analyze
2424
script: ./script/incremental_build.sh analyze
25-
- name: build_all_plugins_apk
26-
script: ./script/build_all_plugins_app.sh apk
2725
- name: build-apks+java-test+drive-examples
2826
env:
2927
matrix:
@@ -70,8 +68,6 @@ task:
7068
- xcrun simctl list
7169
- xcrun simctl create Flutter-iPhone com.apple.CoreSimulator.SimDeviceType.iPhone-X com.apple.CoreSimulator.SimRuntime.iOS-12-2 | xargs xcrun simctl boot
7270
matrix:
73-
- name: build_all_plugins_ipa
74-
script: ./script/build_all_plugins_app.sh ios --no-codesign
7571
- name: build-ipas+drive-examples
7672
env:
7773
PATH: $PATH:/usr/local/bin

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Does your PR require plugin users to manually update their apps to accommodate y
3131

3232
<!-- Links -->
3333
[issue database]: https://github.com/flutter/flutter/issues
34-
[Contributor Guide]: https://github.com/flutter/plugins/blob/master/CONTRIBUTING.md
34+
[Contributor Guide]: https://github.com/FirebaseExtended/flutterfire/blob/master/CONTRIBUTING.md
3535
[Flutter Style Guide]: https://github.com/flutter/flutter/wiki/Style-guide-for-Flutter-repo
3636
[pub versioning philosophy]: https://www.dartlang.org/tools/pub/versioning
3737
[CLA]: https://cla.developers.google.com/

CODEOWNERS

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,8 @@
44
# These names are just suggestions. It is fine to have your changes
55
# reviewed by someone else.
66

7-
packages/android_alarm_manager/* @bkonyi
8-
packages/android_intent/* @mklim
9-
packages/battery/* @amirh
10-
packages/camera/* @bparrishMines @mklim
117
packages/cloud_firestore/* @collinjackson @kroikie
128
packages/cloud_functions/* @collinjackson @kroikie
13-
packages/connectivity/* @cyanglaz
149
packages/firebase_admob/* @amirh @bparrishMines
1510
packages/firebase_analytics/* @collinjackson @kroikie
1611
packages/firebase_auth/* @collinjackson @kroikie
@@ -24,14 +19,3 @@ packages/firebase_ml_vision/* @bparrishMines
2419
packages/firebase_performance/* @bparrishMines @collinjackson
2520
packages/firebase_remote_config/* @collinjackson @kroikie
2621
packages/firebase_storage/* @collinjackson @kroikie
27-
packages/google_maps_flutter/* @iskakaushik
28-
packages/google_sign_in/* @cyanglaz @mehmetf
29-
packages/image_picker/* @cyanglaz
30-
packages/in_app_purchase/* @mklim @cyanglaz
31-
packages/package_info/* @cyanglaz
32-
packages/path_provider/* @collinjackson
33-
packages/quick_actions/* @collinjackson
34-
packages/shared_preferences/* @collinjackson
35-
packages/url_launcher/* @mklim
36-
packages/video_player/* @iskakaushik @cyanglaz
37-
packages/webview_flutter/* @amirh

CONTRIBUTING.md

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
# Contributing to Flutter Plugins
1+
# Contributing to FlutterFire
22

3-
4-
[![Build Status](https://api.cirrus-ci.com/github/flutter/plugins.svg)](https://cirrus-ci.com/github/flutter/plugins/master)
3+
[![Build Status](https://api.cirrus-ci.com/github/FirebaseExtended/flutterfire.svg)](https://cirrus-ci.com/github/FirebaseExtended/flutterfire/master)
54

65
_See also: [Flutter's code of conduct](https://flutter.io/design-principles/#code-of-conduct)_
76

@@ -16,16 +15,16 @@ _See also: [Flutter's code of conduct](https://flutter.io/design-principles/#cod
1615

1716

1817
* Ensure all the dependencies described in the previous section are installed.
19-
* Fork `https://github.com/flutter/plugins` into your own GitHub account. If
18+
* Fork `https://github.com/FirebaseExtended/flutterfire` into your own GitHub account. If
2019
you already have a fork, and are now installing a development environment on
2120
a new machine, make sure you've updated your fork so that you don't use stale
2221
configuration options from long ago.
2322
* If you haven't configured your machine with an SSH key that's known to github, then
2423
follow [GitHub's directions](https://help.github.com/articles/generating-ssh-keys/)
2524
to generate an SSH key.
26-
* `git clone git@github.com:<your_name_here>/plugins.git`
25+
* `git clone git@github.com:<your_name_here>/flutterfire.git`
2726
* `cd plugins`
28-
* `git remote add upstream git@github.com:flutter/plugins.git` (So that you
27+
* `git remote add upstream git@github.com:FirebaseExtended/flutterfire.git` (So that you
2928
fetch from the master repository, not your clone, when running `git fetch`
3029
et al.)
3130

@@ -37,7 +36,7 @@ example's directory, run `pub get` to make sure its dependencies have been
3736
downloaded, and use `flutter run`. Make sure you have a device connected over
3837
USB and debugging enabled on that device.
3938

40-
* `cd packages/battery/example`
39+
* `cd packages/cloud_firestore/example`
4140
* `flutter run`
4241

4342
## Running the tests
@@ -61,8 +60,8 @@ flutter drive test/<name_of_plugin>.dart
6160

6261
We gladly accept contributions via GitHub pull requests.
6362

64-
Please peruse our
65-
[style guide](https://github.com/flutter/flutter/wiki/Style-guide-for-Flutter-repo) and
63+
Please peruse the
64+
[Flutter style guide](https://github.com/flutter/flutter/wiki/Style-guide-for-Flutter-repo) and
6665
[design principles](https://flutter.io/design-principles/) before
6766
working on anything non-trivial. These guidelines are intended to
6867
keep the code consistent and avoid common pitfalls.
@@ -85,7 +84,7 @@ pub global run flutter_plugin_tools test --plugins plugin_name
8584
To send us a pull request:
8685

8786
* `git pull-request` (if you are using [Hub](http://github.com/github/hub/)) or
88-
go to `https://github.com/flutter/plugins` and click the
87+
go to `https://github.com/FirebaseExtended/flutterfire` and click the
8988
"Compare & pull request" button
9089

9190
Please make sure all your checkins have detailed commit messages explaining the patch.

FlutterFire.md

Lines changed: 0 additions & 107 deletions
This file was deleted.

0 commit comments

Comments
 (0)