WrathChaos / MediaPickerLib

Kotlin based media picker library, to pick multiple images and/or vidoes from built-in gallery. Easy to implement and use :)
https://www.freakycoder.com
MIT License
49 stars 16 forks source link

Video mode issue #11

Closed hamza-faroooq closed 4 years ago

hamza-faroooq commented 4 years ago

Hello there, I am not able to see any of my image and video in simulator or physical device

I write this piece of code

       val intent = Intent(this, Gallery::class.java)
        intent.putExtra("title", "Select Video")
        intent.putExtra("mode", 1)
        intent.putExtra("maxSelection", 1)
        startActivityForResult(intent, 123)

Any Help?

WrathChaos commented 4 years ago

Hello @hamza-faroooq, Can you provide with me a reproducible, minimal example?

hamza-faroooq commented 4 years ago

just that piece of code nothing else,

also the physical Device name is Honor 8X having Android Version 10

WrathChaos commented 4 years ago

You need to complete the whole implementation like the example section

Have you checked the working example? https://github.com/WrathChaos/MediaPickerLib/tree/master/app

hamza-faroooq commented 4 years ago

Sorry for this but i have migrated to another source library (https://github.com/alhazmy13/MediaPicker). that library also causing problem on android 10 but i solved that issue from the issues section (https://github.com/alhazmy13/MediaPicker/issues/107).