File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed
java/com/firebase/ui/auth/ui/email Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 14
14
android : icon =" @mipmap/ic_launcher"
15
15
android : label =" @string/app_name"
16
16
android : theme =" @style/AppTheme"
17
- android : supportsRtl =" true "
17
+ android : supportsRtl =" false "
18
18
tools : ignore =" GoogleAppIndexingWarning" >
19
19
<activity android : name =" .ChooserActivity" >
20
20
<intent-filter >
Original file line number Diff line number Diff line change 5
5
<uses-permission android : name =" android.permission.ACCESS_NETWORK_STATE" />
6
6
<uses-permission android : name =" android.permission.INTERNET" />
7
7
8
- <application >
8
+ <application
9
+ android : supportsRtl =" false" >
9
10
10
11
<meta-data
11
12
android : name =" com.google.android.gms.version"
Original file line number Diff line number Diff line change @@ -122,9 +122,10 @@ public void onActivityCreated(@Nullable Bundle savedInstanceState) {
122
122
// Check for email
123
123
String email = getArguments ().getString (ExtraConstants .EXTRA_EMAIL );
124
124
if (!TextUtils .isEmpty (email )) {
125
+ // Use email passed in
125
126
mEmailEditText .setText (email );
126
127
validateAndProceed ();
127
- } if (mHelper .getFlowParams ().smartLockEnabled ) {
128
+ } else if (mHelper .getFlowParams ().smartLockEnabled ) {
128
129
// Try SmartLock email autocomplete hint
129
130
showEmailAutoCompleteHint ();
130
131
}
You can’t perform that action at this time.
0 commit comments