Grammar fixed, now easier to read and understand (#32009)
This commit is contained in:
@ -4,21 +4,21 @@ title: Setting up Firebase Realtime Database
|
|||||||
|
|
||||||
# Prerequisites
|
# Prerequisites
|
||||||
1. The latest version of Android Studio
|
1. The latest version of Android Studio
|
||||||
2. Have connected with Firebase manually or via Firebase Assistant(See [Connecting to Firebase](guide/src/pages/android-development/firebase/connecting-to-firebase)).
|
2. Your app connected to Firebase manually or via Firebase Assistant(See [Connecting to Firebase](guide/src/pages/android-development/firebase/connecting-to-firebase)).
|
||||||
<br>
|
<br>
|
||||||
It is recommended that you do this so as to not be confused by partial instructions related to this in the docs mentioned below.
|
You must complete the above step i.e. connect to Firbase, before executing the below steps
|
||||||
|
|
||||||
# Setting it up with Android Studio
|
# Setting it up with Android Studio
|
||||||
<br>
|
<br>
|
||||||
After adding Firebase to your project, you will need to add extra dependencies and do some other things in order to setup
|
After adding Firebase to your project, you will need to add extra dependencies and do a few edits or add some code in order to setup
|
||||||
the Realtime Database. There are two documentations about this:
|
the Realtime Database. You can follow either of the following documentations -
|
||||||
|
|
||||||
1. Firebase quickstart [docs](https://www.firebase.com/docs/android/quickstart.html)
|
1. Firebase quickstart [docs](https://www.firebase.com/docs/android/quickstart.html)
|
||||||
2. Google [docs](https://firebase.google.com/docs/database/android/start/)
|
2. Google [docs](https://firebase.google.com/docs/database/android/start/)
|
||||||
|
|
||||||
There are some discrepancies between the two.
|
There are some discrepancies between the two.
|
||||||
To make up for them, you can follow the Firebase docs, but instead of just using the gradle dependencies listed there, use the following list.
|
Using Firebase docs is recommended. Or you could just follow thw following steps -
|
||||||
That way, you will not miss any steps from either documentation.
|
That way, you will not miss any steps from either documentations.
|
||||||
|
|
||||||
<br>
|
<br>
|
||||||
|
|
||||||
@ -33,10 +33,10 @@ dependencies {
|
|||||||
}
|
}
|
||||||
```
|
```
|
||||||
# Installation of Firebase Android SDK, permissions and setup code
|
# Installation of Firebase Android SDK, permissions and setup code
|
||||||
Detailed instructions for these can be found [here](https://www.firebase.com/docs/android/quickstart.html).
|
Detailed instructions can be found [here](https://www.firebase.com/docs/android/quickstart.html).
|
||||||
|
|
||||||
# Resources
|
# Resources
|
||||||
To learn about how to read from and write to the database in your Android application, refer to the two docs listed in References.
|
To learn how to read write to the database in your Android application, refer to the two docs listed in References.
|
||||||
<br>
|
<br>
|
||||||
You can also find out how to use Firebase products in the Google documentation, but again it is probably a good idea to look at the Firebase docs as well, or anything that might be helpful.
|
You can also find out how to use Firebase products in the Google documentation, but again it is probably a good idea to look at the Firebase docs as well, or anything that might be helpful.
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user