Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix/9905 crash inflate exception binary xml file line #10279

Closed
Closed
Changes from all commits
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
4667a37
Add password eye icons
marecar3 Jul 25, 2019
0f54572
Add WordPress password eye selector
marecar3 Jul 25, 2019
ddec493
Increment material library from 1.0.0 -> 1.1.0-alpha08
marecar3 Jul 25, 2019
cdf27d8
Set password state based on xml values
marecar3 Jul 25, 2019
b042c07
Fixed Kotlin compilation errors
marecar3 Jul 25, 2019
8919fa3
Merge branch 'develop' into fix/9905_Crash_InflateException_Binary_XM…
marecar3 Jul 25, 2019
ac03256
Fixed lint error
marecar3 Jul 25, 2019
b0815ee
Fixed lint errors
marecar3 Jul 25, 2019
2dda65d
Merge branch 'develop' into fix/9905_Crash_InflateException_Binary_XM…
marecar3 Jul 26, 2019
7dbf71e
Merge branch 'develop' into fix/9905_Crash_InflateException_Binary_XM…
marecar3 Aug 8, 2019
bb40a9f
Update android.material to 1.1.0-alpha09
marecar3 Aug 9, 2019
ea8a1e5
Merge branch 'develop' into fix/9905_Crash_InflateException_Binary_XM…
marecar3 Aug 9, 2019
b3f8428
Merge branch 'develop' into fix/9905_Crash_InflateException_Binary_XM…
marecar3 Aug 13, 2019
67c17b4
Merge branch 'develop' into fix/9905_Crash_InflateException_Binary_XM…
marecar3 Oct 15, 2019
9050e18
Update material library to 1.1.0-beta01
marecar3 Oct 15, 2019
160fecd
Merge branch 'develop' into fix/9905_Crash_InflateException_Binary_XM…
marecar3 Dec 12, 2019
e704d88
Update build gradle to beta02
marecar3 Dec 12, 2019
efccde7
Fixed gradle dependencies
marecar3 Dec 12, 2019
b94b54e
Fix build errors
marecar3 Dec 12, 2019
7aa24a6
Fixed style
marecar3 Dec 12, 2019
58a7860
Merge branch 'develop' into fix/9905_Crash_InflateException_Binary_XM…
marecar3 Dec 13, 2019
4dff540
Increment appcompat, fragment, and core library to match versions fro…
marecar3 Dec 13, 2019
39efcd0
Use requireFramgnetManager() and requireDialog() to match material th…
marecar3 Dec 13, 2019
9c8b11d
Fixed style
marecar3 Dec 13, 2019
1e212bc
fix lint error
marecar3 Dec 13, 2019
51fe1c0
Fix lint issue
marecar3 Dec 13, 2019
a245b15
Merge branch 'develop' into fix/9905_Crash_InflateException_Binary_XM…
marecar3 Dec 20, 2019
6f42d4d
Update google material lib to 1.1.0-rc01
marecar3 Dec 20, 2019
4fbd0eb
Merge branch 'develop' into fix/9905_Crash_InflateException_Binary_XM…
marecar3 Jan 8, 2020
9d5a5ba
Merge branch 'develop' into fix/9905_Crash_InflateException_Binary_XM…
marecar3 Jan 8, 2020
2647a25
Merge branch 'develop' into fix/9905_Crash_InflateException_Binary_XM…
marecar3 Jan 8, 2020
4e673dc
Merge branch 'develop' into fix/9905_Crash_InflateException_Binary_XM…
marecar3 Jan 10, 2020
678e676
Merge branch 'develop' into fix/9905_Crash_InflateException_Binary_XM…
marecar3 May 21, 2020
904cd75
Remove classes as result of bad conflict
marecar3 May 21, 2020
0f693e3
resolve bad merge
marecar3 May 21, 2020
77a44d0
fixes assets
marecar3 May 21, 2020
34e825e
remove unused icon
marecar3 May 21, 2020
b4049c9
Revert "remove unused icon"
marecar3 May 21, 2020
7b64103
Merge branch 'develop' into fix/9905_Crash_InflateException_Binary_XM…
marecar3 May 22, 2020
a9375c7
Revert depedencies
marecar3 May 22, 2020
4f3634f
Remove unused drawable
marecar3 May 22, 2020
50f1703
Fix depedency
marecar3 May 22, 2020
7779847
Small fix
marecar3 May 22, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,8 @@ private void init(Context context, AttributeSet attrs) {
mEditText.setHintTextColor(getResources().getColor(android.R.color.transparent));
}
if (a.hasValue(R.styleable.wpLoginInputRow_passwordToggleEnabled)) {
mTextInputLayout.setPasswordVisibilityToggleEnabled(
a.getBoolean(R.styleable.wpLoginInputRow_passwordToggleEnabled, false));
mTextInputLayout.setEndIconMode(TextInputLayout.END_ICON_PASSWORD_TOGGLE);
mTextInputLayout.setEndIconDrawable(R.drawable.selector_password_visibility);
}

if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN_MR1) {
Expand Down