Skip to content

Commit ccab3e1

Browse files
authored
Cloud Firestore --> Firestore (#1243)
Change-Id: I0a17bdb1a36069ec46fcb1ae3336af2cbe2b93fb
1 parent 7126776 commit ccab3e1

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.opensource/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"crash/README.md": "Crashlytics",
2020
"database/README.md": "Realtime Database",
2121
"dynamiclinks/README.md": "Dynamic Links",
22-
"firestore/README.md": "Cloud Firestore",
22+
"firestore/README.md": "Firestore",
2323
"functions/README.md": "Cloud Functions",
2424
"inappmessaging/README.md": "In App Messaging",
2525
"messaging/README.md": "Cloud Messaging",

firestore/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
# Cloud Firestore Quickstart
1+
# Firestore Quickstart
22

33
## Introduction
44

5-
Friendly Eats is a restaurant recommendation app built on Cloud Firestore.
5+
Friendly Eats is a restaurant recommendation app built on Firestore.
66
For more information about Firestore visit [the docs][firestore-docs].
77

88
## Getting Started
99

10-
* [Set up your Android app for Cloud Firestore][setup-android]
10+
* [Set up your Android app for Firestore][setup-android]
1111
* Use the package name `com.google.firebase.example.fireeats`
1212
* In the Authentication tab of the Firebase console go to the
1313
[Sign-in Method][auth-providers] page and enable 'Email/Password'.
@@ -64,7 +64,7 @@ com.google.firebase.firestore.FirebaseFirestoreException: FAILED_PRECONDITION: T
6464
```
6565

6666
This is because indexes are required for most compound queries in
67-
Cloud Firestore. Clicking on the link from the error message will
67+
Firestore. Clicking on the link from the error message will
6868
automatically open the index creation UI in the Firebase console
6969
with the correct paramters filled in:
7070

firestore/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,10 @@ dependencies {
4242
// Import the Firebase BoM (see: https://firebase.google.com/docs/android/learn-more#bom)
4343
implementation platform('com.google.firebase:firebase-bom:26.1.1')
4444

45-
// Cloud Firestore (Java)
45+
// Firestore (Java)
4646
implementation 'com.google.firebase:firebase-firestore'
4747

48-
// Cloud Firestore (Kotlin)
48+
// Firestore (Kotlin)
4949
implementation 'com.google.firebase:firebase-firestore-ktx'
5050

5151
// Firebase Authentication (Java)

firestore/app/src/main/java/com/google/firebase/example/fireeats/EntryChoiceActivity.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ class EntryChoiceActivity : BaseEntryChoiceActivity() {
1010
return listOf(
1111
Choice(
1212
"Java",
13-
"Run the Cloud Firestore quickstart written in Java.",
13+
"Run the Firestore quickstart written in Java.",
1414
Intent(this, com.google.firebase.example.fireeats.java.MainActivity::class.java)),
1515
Choice(
1616
"Kotlin",
17-
"Run the Cloud Firestore quickstart written in Kotlin.",
17+
"Run the Firestore quickstart written in Kotlin.",
1818
Intent(this, com.google.firebase.example.fireeats.kotlin.MainActivity::class.java))
1919
)
2020
}

0 commit comments

Comments
 (0)