Skip to content

Commit d8b199b

Browse files
committed
More indentation woes, and corrected hyperlink syntax
1 parent e46a07c commit d8b199b

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

codelabs/chat/README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ The steps:
1818

1919

2020
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
2222
* A test device or emulator with Android 2.3.3 or up
2323
* The device must have internet access to the Firebase servers
2424
* 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
2727

2828
The first step is to create a Firebase application. This will be the server-side component that our Android application talks to.
2929

30-
1. Go to the [Firebase web site][https://www.firebase.com/]
30+
1. Go to the [Firebase web site](https://www.firebase.com/)
3131
2. Login or sign up
3232

3333
[screenshot:signup]
@@ -111,11 +111,11 @@ Before we can start writing code that interacts with our Firebase database, we'l
111111
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.
112112
8. Add the following inside the `android` object:
113113

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+
}
119119

120120
This tells Gradle to exclude some files that otherwise create conflicts during the build.
121121

@@ -503,11 +503,11 @@ What we've covered
503503
Next Steps
504504
* Add a log-out button to the app
505505
* 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
507507
* Allow the user to specify a nickname or use one of the Firebase's social authentication providers to look up their first name.
508508
* Get your app on the Play Store!
509509

510510
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

Comments
 (0)