Fixed
Status Update
Comments
[Deleted User] <[Deleted User]> #3
This is due to a bug in Fragment - using 1.1.0-alpha02 of Preference uses a newer Fragment dependency, and fixes this issue.
il...@google.com <il...@google.com>
jb...@google.com <jb...@google.com> #4
Actually, I just checked and it still crashes using 1.1.0-alpha02.
ap...@google.com <ap...@google.com> #5
Could you maybe upload a simpler project with reproduction steps? Or at least provide reproduction steps for the project you linked - Does it crash when using Preference 1.0.0?
This still seems suspiciously similar tohttps://issuetracker.google.com/issues/120240628 , which can not be reproduced with 1.1.0-alpha02 (following the reproduction steps in the first comment).
This still seems suspiciously similar to
il...@google.com <il...@google.com> #6
Hi guys. I can also confirm that it still crashes using preferences 1.1.0-alpha02. I ran the barebones sample project included in https://issuetracker.google.com/issues/120240628 on a Samsung Galaxy J2 Prime running Android 6.0.1.
If I use 1.0.0 version, the NPE issue will not appear. If I use any of the 1.1.0 alphas with/without fragments 1.1.0-alpha02, the NPE issue is there. This issue also exists for MultiSelectListPreference.
If I use 1.0.0 version, the NPE issue will not appear. If I use any of the 1.1.0 alphas with/without fragments 1.1.0-alpha02, the NPE issue is there. This issue also exists for MultiSelectListPreference.
pr...@google.com <pr...@google.com> #7
I also ran it on a Samsung Galaxy J4+ running Android 8.1.0, and it is the same story. There is no NPE issue using preferences 1.0.0, but using any of the 1.1.0 alphas with/without fragments 1.1.0-alpha02 will cause the NPE.
an...@daresay.co <an...@daresay.co> #8
Comment has been deleted.
li...@gmail.com <li...@gmail.com> #9
This has been fixed and will be available in an upcoming release.
ho...@gmail.com <ho...@gmail.com> #10
Comment has been deleted.
ho...@gmail.com <ho...@gmail.com> #11
Comment has been deleted.
ho...@gmail.com <ho...@gmail.com> #12
@11 I mean in which version exactly should we expect it to happen? What would be in the gradle file?
gi...@gmail.com <gi...@gmail.com> #13
alpha03, which is yet to be released.
va...@zedge.net <va...@zedge.net> #14
@13 You mean :
implementation 'androidx.fragment:fragment:1.1.0-alpha03' ?
implementation 'androidx.fragment:fragment:1.1.0-alpha03' ?
il...@google.com <il...@google.com> #15
Oh I see - sorry.
The two fragment fixes will be available in androidx.fragment:fragment:1.1.0-alpha04
However, androidx.preference:preference:1.1.0-alpha03 will depend on fragment alpha04, so you only need to specify androidx.preference:preference:1.1.0-alpha03 to bring in these fixes and other changes in Preference.
The two fragment fixes will be available in androidx.fragment:fragment:1.1.0-alpha04
However, androidx.preference:preference:1.1.0-alpha03 will depend on fragment alpha04, so you only need to specify androidx.preference:preference:1.1.0-alpha03 to bring in these fixes and other changes in Preference.
ja...@gopuff.com <ja...@gopuff.com> #16
@15 Thank you
ja...@sense.com <ja...@sense.com> #17
nice! will test and provide feedback once the new versions are released. thanks!
Description
Versions
Component used: Navigation
Version used: 2.5.3
Devices/Android versions reproduced on: any
Description
According to the documentation of [BackHandler], nested BackHandlers(https://developer.android.com/reference/kotlin/androidx/activity/compose/package-summary#top-level-functions ) should take priority:
However, this doesn't work correctly if the activity is paused and then resumed.
Steps to reproduce
Code to demonstrate the issue
A sample project is attached.