@@ -43,18 +43,18 @@ Gradle, add:
4343
4444``` groovy
4545dependencies {
46- // ...
47- compile 'com.firebaseui:firebase-ui-auth:0.6.0 '
46+ // ...
47+ compile 'com.firebaseui:firebase-ui-auth:0.6.1 '
4848}
4949```
5050
5151If instead your project uses Maven, add:
5252
5353``` xml
5454<dependency >
55- <groupId >com.firebaseui</groupId >
56- <artifactId >firebase-ui-auth</artifactId >
57- <version >0.6.0 </version >
55+ <groupId >com.firebaseui</groupId >
56+ <artifactId >firebase-ui-auth</artifactId >
57+ <version >0.6.1 </version >
5858</dependency >
5959```
6060
@@ -72,8 +72,8 @@ the [Facebook developer dashboard](https://developers.facebook.com):
7272
7373``` xml
7474<resources >
75- <!-- ... -->
76- <string name =" facebook_application_id" translatable =" false" >APPID</string >
75+ <!-- ... -->
76+ <string name =" facebook_application_id" translatable =" false" >APPID</string >
7777</resources >
7878```
7979
@@ -98,9 +98,9 @@ whether a
9898``` java
9999FirebaseAuth auth = FirebaseAuth . getInstance();
100100if (auth. getCurrentUser() != null ) {
101- // already signed in
101+ // already signed in
102102} else {
103- // not signed in
103+ // not signed in
104104}
105105```
106106
@@ -260,17 +260,17 @@ completed once all necessary sign-out operations are completed:
260260
261261``` java
262262public void onClick(View v) {
263- if (v. getId() == R . id. sign_out) {
264- AuthUI . getInstance()
265- .signOut(this )
266- .addOnCompleteListener(new OnCompleteListener<Void > () {
263+ if (v. getId() == R . id. sign_out) {
264+ AuthUI . getInstance()
265+ .signOut(this )
266+ .addOnCompleteListener(new OnCompleteListener<Void > () {
267267 public void onComplete (@NonNull Task<Void > task ) {
268- // user is now signed out
269- startActivity(new Intent (MyActivity . this , SignInActivity . class));
270- finish();
268+ // user is now signed out
269+ startActivity(new Intent (MyActivity . this , SignInActivity . class));
270+ finish();
271271 }
272- });
273- }
272+ });
273+ }
274274}
275275```
276276
@@ -358,8 +358,8 @@ redefine a string to change it, for example:
358358
359359``` java
360360< resources>
361- < ! -- was " Signing up..." -- >
362- < string name= " progress_dialog_signing_up" > Creating your shiny new account...</string>
361+ < ! -- was " Signing up..." -- >
362+ < string name= " progress_dialog_signing_up" > Creating your shiny new account...</string>
363363</resources>
364364```
365365
0 commit comments