Skip to content

Commit 00d4626

Browse files
google-oss-botvkryachko
authored andcommitted
Initial Open-source commit.
0 parents  commit 00d4626

File tree

915 files changed

+401465
-0
lines changed

Some content is hidden

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

915 files changed

+401465
-0
lines changed

.github/ISSUE_TEMPLATE/bug.md

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
---
2+
name: ⚠️ Report a Bug
3+
about: Think you found a bug in the SDK? Report it here.
4+
---
5+
6+
<!-- DO NOT DELETE
7+
validate_template=true
8+
template_path=.github/ISSUE_TEMPLATE/bug.md
9+
-->
10+
11+
### [READ] Step 1: Are you in the right place?
12+
13+
Issues filed here should be about bugs in __the code in this repository__.
14+
If you have a general question, need help debugging, or fall into some
15+
other category use one of these other channels:
16+
17+
* For general technical questions, post a question on [StackOverflow](http://stackoverflow.com/)
18+
with the firebase tag.
19+
* For general Firebase discussion, use the [firebase-talk](https://groups.google.com/forum/#!forum/firebase-talk)
20+
google group.
21+
* For help troubleshooting your application that does not fall under one
22+
of the above categories, reach out to the personalized
23+
[Firebase support channel](https://firebase.google.com/support/).
24+
25+
### [REQUIRED] Step 2: Describe your environment
26+
27+
* Android Studio version: _____
28+
* Firebase Component: _____ (Database, Firestore, Storage, Functions, etc)
29+
* Component version: _____
30+
31+
### [REQUIRED] Step 3: Describe the problem
32+
33+
#### Steps to reproduce:
34+
35+
What happened? How can we make the problem occur?
36+
This could be a description, log/console output, etc.
37+
38+
#### Relevant Code:
39+
40+
```
41+
// TODO(you): code here to reproduce the problem
42+
```

.github/ISSUE_TEMPLATE/fr.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
name: 💡 Feature Request
3+
about: Have a feature you'd like to see in the Android SDK? Request it here.
4+
---
5+
6+
<!-- DO NOT DELETE
7+
validate_template=false
8+
template_path=.github/ISSUE_TEMPLATE/fr.md
9+
-->
10+
11+
## What feature would you like to see?
12+
13+
Describe the feature you would like to add, ideally proposing a specific API.
14+
15+
## How would you use it?
16+
17+
Tell us how you'd use this feature in your app.

.gitignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
.gradle/
2+
build/
3+
.idea/
4+
*.iml
5+
captures/
6+
local.properties
7+
google-services.json
8+
/build.gradle

.idea/copyright/Apache_2___Google.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/copyright/profiles_settings.xml

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/runConfigurations/Firestore_Integration_Tests.xml

Lines changed: 50 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/runConfigurations/Firestore_Unit_Tests.xml

Lines changed: 24 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.opensource/project.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"name": "Firebase SDK for Android",
3+
"type": "library",
4+
"platforms": [
5+
"Android"
6+
],
7+
"content": "README.md",
8+
"pages": [
9+
"firebase-common/README.md",
10+
"firebase-firestore/README.md",
11+
"protolite-well-known-types/README.md"
12+
],
13+
"related": [
14+
"firebase/quickstart-android"
15+
]
16+
}

CONTRIBUTING.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# How to Contribute
2+
3+
We'd love to accept your patches and contributions to this project. There are
4+
just a few small guidelines you need to follow.
5+
6+
## Contributor License Agreement
7+
8+
Contributions to this project must be accompanied by a Contributor License
9+
Agreement. You (or your employer) retain the copyright to your contribution;
10+
this simply gives us permission to use and redistribute your contributions as
11+
part of the project. Head over to <https://cla.developers.google.com/> to see
12+
your current agreements on file or to sign a new one.
13+
14+
You generally only need to submit a CLA once, so if you've already submitted one
15+
(even if it was for a different project), you probably don't need to do it
16+
again.
17+
18+
## Code reviews
19+
20+
All submissions, including submissions by project members, require review. We
21+
use GitHub pull requests for this purpose. Consult
22+
[GitHub Help](https://help.github.com/articles/about-pull-requests/) for more
23+
information on using pull requests.
24+
25+
## Community Guidelines
26+
27+
This project follows
28+
[Google's Open Source Community Guidelines](https://opensource.google.com/conduct/).
29+

0 commit comments

Comments
 (0)