-
Notifications
You must be signed in to change notification settings - Fork 54
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Picking files #53
Picking files #53
Conversation
Hi @JamesMcIntosh , |
Looks like I need to do a few more things to get this working better, I'll see if I can address them before the new year.
|
|
Hi @miguelbcr Do you have any time to review the current progress? Why are the images submitted to the media scanner during the save action? During the save action the source file is deleted, this makes some sense if you have just resized/cropped the file, can you see any reason not to delete it? Additional work:
Many thanks |
Hi @JamesMcIntosh, About your questions:
|
@JamesMcIntosh Great job! I've just thought about changes that you did. Are there possibility to add in dependencies aar from maven with implemented features? I want to test it. Thanks |
Hi @Yazon2006, You can include this dependency using https://jitpack.io and this dependency
Otherwise you can checkout the project from my branch and run the following command to install it into your local repository
Dependency would then be
Kind regards |
Fix FileData constructors Fix double handling of single file picker Tidy permissions
…s when taking photos or cropping
f4d155f
to
2ca449c
Compare
Hi,
I have been investigating your library and found your implementation using RxJava to be very useful for retrieving images from the camera and gallery.
What I also wanted to do was to be able to request arbitrary non-image files e.g. PDF. Instead of bringing in yet another library I made these changes.
I realise that this functionality steps outside of the project description "RxJava extension for Android to access camera and gallery to take images." so let me know what you think about incorporating the idea.
I have also made the changes for the 1.x branch which I can create another pull-request.
https://github.com/Agrimap/RxPaparazzo/tree/master-agrimap
A further cleanup can be done to remove Gallery / PickImage / PickImages and just use the Files / PickFile / PickFiles and mimeType filtering to accomplish the same thing. I was just not sure how much of Gallery / PickImage(s) you would want to keep for backwards compatibility.
Kind regards
James McIntosh