nguyenhoanglam / ImagePicker

A customizable library for selecting images on the device.
Apache License 2.0
599 stars 156 forks source link

Library doesnt supporting Android Work Profile Apps #101

Closed kuldiep closed 4 years ago

kuldiep commented 5 years ago

when i moved my app to work profile, your library is not able to show gallery photos... basically it is not suggesting to move to personal profile....solution is to support

                    Intent imgIntent = new Intent(Intent.ACTION_PICK, 
                    android.provider.MediaStore.Video.Media .EXTERNAL_CONTENT_URI);

                    imgIntent.setType("image/*");

i wrote native code to pick videos from gallery so when app is in work profile native android code shows dialog to move to personal profile and clicking on personal profile i am able to pick videos.