Skip to content

Commit bc428ed

Browse files
committed
Fix RTL lint errors
Change-Id: I0fc2e3773efff571236df288c72e250cf6f06803
1 parent 1184b91 commit bc428ed

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

app/src/main/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
android:icon="@mipmap/ic_launcher"
1515
android:label="@string/app_name"
1616
android:theme="@style/AppTheme"
17-
android:supportsRtl="true"
17+
android:supportsRtl="false"
1818
tools:ignore="GoogleAppIndexingWarning">
1919
<activity android:name=".ChooserActivity">
2020
<intent-filter>

auth/src/main/AndroidManifest.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
66
<uses-permission android:name="android.permission.INTERNET"/>
77

8-
<application>
8+
<application
9+
android:supportsRtl="false">
910

1011
<meta-data
1112
android:name="com.google.android.gms.version"

auth/src/main/java/com/firebase/ui/auth/ui/email/CheckEmailFragment.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,9 +122,10 @@ public void onActivityCreated(@Nullable Bundle savedInstanceState) {
122122
// Check for email
123123
String email = getArguments().getString(ExtraConstants.EXTRA_EMAIL);
124124
if (!TextUtils.isEmpty(email)) {
125+
// Use email passed in
125126
mEmailEditText.setText(email);
126127
validateAndProceed();
127-
} if (mHelper.getFlowParams().smartLockEnabled) {
128+
} else if (mHelper.getFlowParams().smartLockEnabled) {
128129
// Try SmartLock email autocomplete hint
129130
showEmailAutoCompleteHint();
130131
}

0 commit comments

Comments
 (0)