Sergey Valevich
Results
1
comments of
Sergey Valevich
Instead of `CropImage.startPickImageActivity(this)` use: ``` fun pickPhoto() { val documentsIntent = Intent(Intent.ACTION_GET_CONTENT) documentsIntent.type = "image/*" val otherGalleriesIntent = Intent(Intent.ACTION_PICK, MediaStore.Images.Media.EXTERNAL_CONTENT_URI) otherGalleriesIntent.type = "image/*" val chooserIntent = Intent.createChooser( documentsIntent, getString(R.string.pick_image_intent_chooser_title) ).putExtra(Intent.EXTRA_INITIAL_INTENTS,...