RxImagePicker icon indicating copy to clipboard operation
RxImagePicker copied to clipboard

Android. Pick image from camera or gallery using RxJava2

Results 11 RxImagePicker issues
Sort by recently updated
recently updated
newest added

by putting null check on result if image result comes null then app will not crash and it siply shows toast and return.

RxImagePicker.kt line 242 com.mlsdev.rximagepicker.RxImagePicker.onImagePicked Java code: RxImagePicker.Companion.with(getSupportFragmentManager()).requestImage(Sources.CHOOSER).subscribe(uri -> { viewModel.avatar = uri; Glide.with(viewBinding.getRoot()).load(viewModel.avatar).circleCrop().into(viewBinding.ivAvatar); });

I recommend not using force unwrap in your libs. When you take photos for some reason on some devices it can return Uri `null` and in your `onImagePicked` method it...

hello, thanks for your efforts. Can we use this library in kotlin? please guide. **Thank you.**

Would you be able to upload this to mavenCentral?

Picker by using gallery is not workin on Samsung A21S, result is null. Such issue with providers

I am getting Activity not found while taking pictures but this issue is appearing only with Samsung mode SM-J737V device. this is the full stack trace of the issue: Caused...

I've upgraded my project to use AndroidX and RxImagePicker 2.2.1, which broke my code: @Override public void onPhotoReadyAction(final Sources pickerSource, final int imageTargetId) { Log.d(TAG, String.format("onPhotoReadyAction() --> requestImage() for sources:...

**Request** ``` RxImagePicker.with(fragmentManager!!).requestImage(Sources.CAMERA).subscribe { CropImage.activity(it).start(activity!!) ``` **Description** No camera permission has been added to the manifest. I am using kotlin with androidx Fragment **Error** ``` io.reactivex.exceptions.OnErrorNotImplementedException: The exception was not...

When request camera capture, i need add intent.putExtra(MediaStore.EXTRA_SCREEN_ORIENTATION,ActivityInfo.SCREEN_ORIENTATION_PORTRAIT); in the code cameraPictureUrl = createImageUri(); pictureChooseIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE); pictureChooseIntent.putExtra(MediaStore.EXTRA_OUTPUT, cameraPictureUrl); chooseCode = TAKE_PHOTO; break; Plase add the option orientation for...