Skip to content

Commit aa39cf1

Browse files
committed
Codelab images
1 parent e65a988 commit aa39cf1

File tree

5 files changed

+4
-4
lines changed

5 files changed

+4
-4
lines changed

codelabs/chat/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ In this step we'll create a project in Android Studio.
6161
![Minimum Android API level](images/2_3.png)
6262

6363
We've left it on 10 (Gingerbread) here, since that is the lowest API level Firebase supports.
64-
4. Start with a Blank Activity
64+
4. Start with a Empty Activity
6565

6666
![Add an activity](images/2_4.png)
6767

@@ -89,8 +89,8 @@ Before we can start writing code that interacts with our Firebase database, we'l
8989

9090
2. add the following lines to the dependencies object at the bottom:
9191

92-
compile 'com.firebase:firebase-client-android:2.3.1'
93-
compile 'com.firebaseui:firebase-ui:0.2.0'
92+
compile 'com.firebase:firebase-client-android:2.5.0'
93+
compile 'com.firebaseui:firebase-ui:0.3.0'
9494

9595
This tells Gradle to include the Firebase SDK and the FirebaseUI library.
9696

@@ -120,7 +120,7 @@ Before we can start writing code that interacts with our Firebase database, we'l
120120
<uses-permission android:name="android.permission.INTERNET" />
121121
```
122122

123-
![INTERNET permission in AndroidManifest.xml](images/3_3.png)
123+
![INTERNET permission in AndroidManifest.xml](images/3_3.png)
124124

125125
8. Import Firebase at the top of your MainActivity by adding the following line:
126126

codelabs/chat/images/3_1.png

-106 KB
Loading

codelabs/chat/images/3_2.png

-100 KB
Loading

codelabs/chat/images/3_3.png

-75.2 KB
Loading

codelabs/chat/images/3_4.png

-41.7 KB
Loading

0 commit comments

Comments
 (0)