File tree 4 files changed +9
-9
lines changed
src/main/java/com/google/firebase/example/fireeats 4 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 19
19
"crash/README.md" : " Crashlytics" ,
20
20
"database/README.md" : " Realtime Database" ,
21
21
"dynamiclinks/README.md" : " Dynamic Links" ,
22
- "firestore/README.md" : " Cloud Firestore" ,
22
+ "firestore/README.md" : " Firestore" ,
23
23
"functions/README.md" : " Cloud Functions" ,
24
24
"inappmessaging/README.md" : " In App Messaging" ,
25
25
"messaging/README.md" : " Cloud Messaging" ,
Original file line number Diff line number Diff line change 1
- # Cloud Firestore Quickstart
1
+ # Firestore Quickstart
2
2
3
3
## Introduction
4
4
5
- Friendly Eats is a restaurant recommendation app built on Cloud Firestore.
5
+ Friendly Eats is a restaurant recommendation app built on Firestore.
6
6
For more information about Firestore visit [ the docs] [ firestore-docs ] .
7
7
8
8
## Getting Started
9
9
10
- * [ Set up your Android app for Cloud Firestore] [ setup-android ]
10
+ * [ Set up your Android app for Firestore] [ setup-android ]
11
11
* Use the package name ` com.google.firebase.example.fireeats `
12
12
* In the Authentication tab of the Firebase console go to the
13
13
[ Sign-in Method] [ auth-providers ] page and enable 'Email/Password'.
@@ -64,7 +64,7 @@ com.google.firebase.firestore.FirebaseFirestoreException: FAILED_PRECONDITION: T
64
64
```
65
65
66
66
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
68
68
automatically open the index creation UI in the Firebase console
69
69
with the correct paramters filled in:
70
70
Original file line number Diff line number Diff line change @@ -42,10 +42,10 @@ dependencies {
42
42
// Import the Firebase BoM (see: https://firebase.google.com/docs/android/learn-more#bom)
43
43
implementation platform(' com.google.firebase:firebase-bom:26.1.1' )
44
44
45
- // Cloud Firestore (Java)
45
+ // Firestore (Java)
46
46
implementation ' com.google.firebase:firebase-firestore'
47
47
48
- // Cloud Firestore (Kotlin)
48
+ // Firestore (Kotlin)
49
49
implementation ' com.google.firebase:firebase-firestore-ktx'
50
50
51
51
// Firebase Authentication (Java)
Original file line number Diff line number Diff line change @@ -10,11 +10,11 @@ class EntryChoiceActivity : BaseEntryChoiceActivity() {
10
10
return listOf (
11
11
Choice (
12
12
" Java" ,
13
- " Run the Cloud Firestore quickstart written in Java." ,
13
+ " Run the Firestore quickstart written in Java." ,
14
14
Intent (this , com.google.firebase.example.fireeats.java.MainActivity ::class .java)),
15
15
Choice (
16
16
" Kotlin" ,
17
- " Run the Cloud Firestore quickstart written in Kotlin." ,
17
+ " Run the Firestore quickstart written in Kotlin." ,
18
18
Intent (this , com.google.firebase.example.fireeats.kotlin.MainActivity ::class .java))
19
19
)
20
20
}
You can’t perform that action at this time.
0 commit comments