Bug P2
Status Update
Comments
sd...@gmail.com <sd...@gmail.com> #2
I face with the same problem. I have different pageMargin in landscape and portrait and when viewpager is scrolled for the more than first position, after rotating device it is shifted.
I beleive the problem is inside onSizeChanged that is called after onConfigurationChanged, it has following code:
if (w != oldw) {
recomputeScrollPosition(w, oldw, mPageMargin, mPageMargin);
}
w always not equals oldw when changing orientation, so recomputeScrollPosition is called, but whit the same values for margin and oldMargin.
This should be fixed.
I beleive the problem is inside onSizeChanged that is called after onConfigurationChanged, it has following code:
if (w != oldw) {
recomputeScrollPosition(w, oldw, mPageMargin, mPageMargin);
}
w always not equals oldw when changing orientation, so recomputeScrollPosition is called, but whit the same values for margin and oldMargin.
This should be fixed.
sd...@gmail.com <sd...@gmail.com> #3
[Comment deleted]
Description
We are using androix.biometric 1.1.0 for biometric authentication and it was working fine until we upgrade the compile SDK to 34 from 33 having target SDK.
In debug build its working fine and we are getting authentication success callback after user provides finger print ,
But in Release build we are not getting success callback , we try to enable logs for release but we are seeing only
2023-11-14 20:34:23.132 5860-5898 BiometricPrompt com...pal.android.p2pmobile.pp_beta I onAuthenticationSucceeded: 2
but not getting any call backs.
its working when we are on complie sdk 33 but not working on complie SDK 34.
Also its working with Compile SDK 34 on Android 8 only even in release build.
Compile SDK 34 , Debug build - working on all devices
Compile SDK 34 , Release build - working on only android 8
Compile SDK 33 , Release/Debug build - working on all devices
Also when we added -keep class androidx.biometric.** { *; } this proguard rule then it start working for all devices with Compile SDK 34 in release mode. So we are guessing something in trimmed in release build.
please let us know if you are aware of this issue and we need to update any androix.biometric version.
Thank you.