Skip to content

Commit 11481fc

Browse files
author
Google Automerger
committed
Merge commit '6568e69c27747a6e1d4fff6181efdd0ed19250c4' into HEAD
2 parents 9393c46 + 6568e69 commit 11481fc

File tree

5 files changed

+10
-7
lines changed

5 files changed

+10
-7
lines changed

AUTHORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,4 @@
77
# The email address is not required for organizations.
88

99
Google Inc.
10+
Marios Harrane <[email protected]>

CONTRIBUTORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,4 @@ Frank van Puffelen <[email protected]>
1313
Abraham Haskins <[email protected]>
1414
David East <[email protected]>
1515
Mike McDonald <[email protected]>
16+
Marios Harrane <[email protected]>

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,10 +81,10 @@ Please fill out either the individual or corporate Contributor License Agreement
8181
(CLA).
8282

8383
* If you are an individual writing original source code and you're sure you
84-
own the intellectual property, then you'll need to sign an
84+
own the intellectual property, then you'll need to sign an
8585
[individual CLA](https://developers.google.com/open-source/cla/individual).
8686
* If you work for a company that wants to allow you to contribute your work,
87-
then you'll need to sign a
87+
then you'll need to sign a
8888
[corporate CLA](https://developers.google.com/open-source/cla/corporate).
8989

9090
Follow either of the two links above to access the appropriate CLA and
@@ -101,4 +101,4 @@ accept your pull requests.
101101
1. Ensure that your code adheres to the existing style of the library to which
102102
you are contributing.
103103
1. Ensure that your code has an appropriate set of unit tests which all pass.
104-
1. Submit a pull request and cc @puf or @mcdonamp
104+
1. Submit a pull request and cc @puf or @mcdonamp

auth/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -211,12 +211,12 @@ public void onClick(View v) {
211211
if (v.getId() == R.id.sign_out) {
212212
AuthUI.getInstance(this)
213213
.signOut(this)
214-
.addOnCompleteListener(new OnCompleteListener<AuthResult>() {
215-
public void onComplete(@NonNull Task<AuthResult> task) {
214+
.addOnCompleteListener(new OnCompleteListener<Void>() {
215+
public void onComplete(@NonNull Task<Void> task) {
216216
// user is now signed out
217217
startActivity(new Intent(MyActivity.this, SignInActivity.class));
218218
finish();
219-
});
219+
}
220220
});
221221
}
222222
}

auth/src/main/res/values/styles.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@
104104
</style>
105105

106106
<!-- Common styles -->
107-
<style name="FirebaseUI.Text.TextInputLayout" >
107+
<style name="FirebaseUI.Text.TextInputLayout">
108108
<item name="android:paddingTop">8dp</item>
109109
</style>
110110

@@ -200,6 +200,7 @@
200200
<style name="FirebaseUI.AuthMethodPicker.ButtonHolder">
201201
<item name="android:orientation">vertical</item>
202202
<item name="android:paddingBottom">56dp</item>
203+
<item name="android:clipToPadding">false</item>
203204
<item name="android:layout_width">220dp</item>
204205
<item name="android:layout_height">wrap_content</item>
205206
</style>

0 commit comments

Comments
 (0)