BorlandDev

Results 2 comments of BorlandDev

> This bug is consistently reproducible when using AndroidX Fragment 1.5.0 and above. You can reproduce it by simply adding `implementation "androidx.fragment:fragment:1.5.5"` to FishBunDemo/build.gradle. Hi. I have this bug, but...

I bring my code: private val contentGallery = registerForActivityResult(StartActivityForResult()) { if (it.resultCode == AppCompatActivity.RESULT_OK) { path = it.data?.getParcelableArrayListExtra(FishBun.INTENT_PATH) ?: arrayListOf() navigateToUploadPhotosFragment(path) } } private fun openGallery() { if (PickVisualMedia.isPhotoPickerAvailable()) contentGalleryWithHigherApi.launch(...