You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: codelabs/chat/README.md
+11-11Lines changed: 11 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,7 @@ The steps:
18
18
19
19
20
20
What you'll need
21
-
*[Android Studio][https://developer.android.com/sdk/installing/studio.html] version 1.3 or up
21
+
*[Android Studio](https://developer.android.com/sdk/installing/studio.html) version 1.3 or up
22
22
* A test device or emulator with Android 2.3.3 or up
23
23
* The device must have internet access to the Firebase servers
24
24
* While we'll show you what to do in Android Studio, this code lab does not explain how Android works
@@ -27,7 +27,7 @@ What you'll need
27
27
28
28
The first step is to create a Firebase application. This will be the server-side component that our Android application talks to.
29
29
30
-
1. Go to the [Firebase web site][https://www.firebase.com/]
30
+
1. Go to the [Firebase web site](https://www.firebase.com/)
31
31
2. Login or sign up
32
32
33
33
[screenshot:signup]
@@ -111,11 +111,11 @@ Before we can start writing code that interacts with our Firebase database, we'l
111
111
This file contains the steps that Android Studio uses to build our app. We'll add a reference to Firebase to it, so we can start using it.
112
112
8. Add the following inside the `android` object:
113
113
114
-
packagingOptions {
115
-
exclude 'META-INF/LICENSE'
116
-
exclude 'META-INF/LICENSE-FIREBASE.txt'
117
-
exclude 'META-INF/NOTICE'
118
-
}
114
+
packagingOptions {
115
+
exclude 'META-INF/LICENSE'
116
+
exclude 'META-INF/LICENSE-FIREBASE.txt'
117
+
exclude 'META-INF/NOTICE'
118
+
}
119
119
120
120
This tells Gradle to exclude some files that otherwise create conflicts during the build.
121
121
@@ -503,11 +503,11 @@ What we've covered
503
503
Next Steps
504
504
* Add a log-out button to the app
505
505
* Add a password-reset button to the login dialog
506
-
* Use a RecyclerView (and []`FirebaseRecyclerViewAdapter`][https://github.com/firebase/FirebaseUI-Android/#using-a-recyclerview]) to ensure the activity also performs well when there are lots of messages
506
+
* Use a RecyclerView (and [`FirebaseRecyclerViewAdapter`](https://github.com/firebase/FirebaseUI-Android/#using-a-recyclerview)) to ensure the activity also performs well when there are lots of messages
507
507
* Allow the user to specify a nickname or use one of the Firebase's social authentication providers to look up their first name.
508
508
* Get your app on the Play Store!
509
509
510
510
Learn More
511
-
* Learn all about using [Firebase with Android][https://www.firebase.com/docs/android/] by following the [Firebase for Android development guide][https://www.firebase.com/docs/android/guide/].
512
-
* Study a more advanced sample application: [AndroidDrawing][https://github.com/firebase/AndroidDrawing]
513
-
* Learn about [GeoFire for Java][https://github.com/firebase/geofire-java], which allows you to add realtime location queries to your Android application
511
+
* Learn all about using [Firebase with Android](https://www.firebase.com/docs/android/) by following the [Firebase for Android development guide](https://www.firebase.com/docs/android/guide/).
512
+
* Study a more advanced sample application: [AndroidDrawing](https://github.com/firebase/AndroidDrawing).
513
+
* Learn about [GeoFire for Java](https://github.com/firebase/geofire-java), which allows you to add realtime location queries to your Android application
0 commit comments