Skip to content

Commit

Permalink
Cloud Firestore --> Firestore (firebase#1243)
Browse files Browse the repository at this point in the history
Change-Id: I0a17bdb1a36069ec46fcb1ae3336af2cbe2b93fb
  • Loading branch information
samtstern authored Jan 7, 2021
1 parent 7126776 commit ccab3e1
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .opensource/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"crash/README.md": "Crashlytics",
"database/README.md": "Realtime Database",
"dynamiclinks/README.md": "Dynamic Links",
"firestore/README.md": "Cloud Firestore",
"firestore/README.md": "Firestore",
"functions/README.md": "Cloud Functions",
"inappmessaging/README.md": "In App Messaging",
"messaging/README.md": "Cloud Messaging",
Expand Down
8 changes: 4 additions & 4 deletions firestore/README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# Cloud Firestore Quickstart
# Firestore Quickstart

## Introduction

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

## Getting Started

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

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

Expand Down
4 changes: 2 additions & 2 deletions firestore/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,10 @@ dependencies {
// Import the Firebase BoM (see: https://firebase.google.com/docs/android/learn-more#bom)
implementation platform('com.google.firebase:firebase-bom:26.1.1')

// Cloud Firestore (Java)
// Firestore (Java)
implementation 'com.google.firebase:firebase-firestore'

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

// Firebase Authentication (Java)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ class EntryChoiceActivity : BaseEntryChoiceActivity() {
return listOf(
Choice(
"Java",
"Run the Cloud Firestore quickstart written in Java.",
"Run the Firestore quickstart written in Java.",
Intent(this, com.google.firebase.example.fireeats.java.MainActivity::class.java)),
Choice(
"Kotlin",
"Run the Cloud Firestore quickstart written in Kotlin.",
"Run the Firestore quickstart written in Kotlin.",
Intent(this, com.google.firebase.example.fireeats.kotlin.MainActivity::class.java))
)
}
Expand Down

0 comments on commit ccab3e1

Please sign in to comment.