-
Notifications
You must be signed in to change notification settings - Fork 277
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
Use FingerprintManager instead of FingerprintManagerCompat (Fix #300) #302
Conversation
|
||
return keyguardManager != null && | ||
return keyguardManager != null && fingerprintManager != null && |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@0140454 please use brackets around subexpressions: return (keyguardManager != null) && (fingerprintManager != null) && ...
for legibility
If I merge #297 into master, could you rebase this off that - I am having a hard time figuring out what's right! |
@m2049r |
* spinner tweaks (m2049r#306) * Fix keystore null (m2049r#308) * avoid crash if input to large * avoid NPE if wallet key not found * Use FingerprintManager instead of FingerprintManagerCompat (Fix m2049r#300) (m2049r#302) * show correct amount for pending tx (m2049r#309) * accounts (m2049r#312) * Inform user the progress or result of opening wallet (m2049r#297) * Fix balance (m2049r#313) * fix length test (m2049r#314) * sweep all (m2049r#317) * French Strings updated to m2049r#297 (m2049r#316) + Missing update to m2049r#312 + enhancement on "wrapping things up" * Fixes to v1.5.5 (m2049r#318) * fix disappearing hamburger * german fixes to fit space * Layout tweaks (m2049r#319) * remove mixin settings (m2049r#320) * subaddresses (m2049r#322) * new subaddress bump effect (m2049r#327) * Update Translations (m2049r#329) * avoid NPE (m2049r#330) * fix displayed subaddress # * fix path of build script * cleanup translations & resources * include for aeon
No description provided.