* Android: Add video recording support
- Caveats:
- Wont work if cropping is enabled
- Video recording will be used if mediaType is set to 'video'
- Mediatype any is not supported since there is no standard intent for capture image or video
* IOS: Add video recording support
- Caveats:
- Cropping does not work
Video recording will be enabled if mediaType is set to `video` or `any`. Note: With any the native ui
allows the user to choose whether to take a photo or record a video. This differs from android where
mediaType any will just allow taking photos.
* IOS: Set camera video quality to high
* Update README.md (#851)
* Update PickerModule.java (#862)
Fix for default values being kept when calling cropPicker from multiple locations.
Now default values if not passed will be reverted to default.
* version bump
* Add front camera support for android (#876)
* Add front camera support for android
* Update readme
* Update readme
* Update README.md
* Added missing flags to support front camera on some android phones (#891)
* Remove problematic step from manual post-install steps (#821)
* (ios) fix images are not resized after cropping. Fixes#843
* (ios) add example project xcshareddata
* (ios) fixes for camera recording. updated example project with camera recording. updated readme with camera recording
* unify ios and android camera response. Fixes#872
* Upload new logo
* Add new logo to README
* Add new to mipmap hdpi
* Add new to mipmap mdpi
* Add new to mipmap mdpi
* Add new to mipmap mdpi
* add new to mipmap mdpi
* Add new to mipmap mdpi
* Add new to mipmap mdpi
* Add new to mipmap mdpi
* Add new to mipmap xhdpi
* Add new to mipmap xhdpi
* Add new to mipmap xhdpi
* Add new to mipmap xhdpi
* Add new to mipmap xxhdpi
* Add new to mipmap xxhdpi
* Add new to mipmap xxhdpi
* Add new to mipmap xxhdpi
* Add new to mipmap xxhdpi
* Add new to mipmap xxhdpi
* Add new to mipmap xxhdpi
* Upload new logo svg
* Update README with new logo
* delete
* Upload New logo svg
* Update README
* Add support for all types of smart albums (selfies, time lapses, screenshots, etc.)
* readme - add list of supported smart albums
* fix readme layout
* added creationDate and modificationDate to response object
added modificationDate to Android response
* Update Compression.m (#529)
Addition of passthrough preset option
Update README to include dates in response
* Add option to set the cropper toolbar title
I needed to change the toolbar title but didn't know any other way so I thought about adding this functionality. Currently, as my knowledge is limited to java, this is currently only available for Android.
Example usage:
```
ImagePicker.openCropper({
path: 'image.png',
width: 800,
height: 800,
cropperToolbarTitle: 'Please, crop your photo',
})
```
If no title is provided, the default one from the library will be used.
* Update docs
* Added .github/ISSUE_TEMPLATE.md (optional)
* Added CONTRIBUTING.md (optional)
* Added backers and sponsors on the README
* Added call to donate after npm install (optional)
Added additional example to the code snippets provided, showing how to select videos with the ImagePicker.
Also documented the behaviour whereby having the prop 'cropping' set to true results in no videos being shown on Android. I have stated that this issue is known to have happened, rather than stating that it happens all the time, due to the relative poor test coverage across the broad spectrum of Android devices available.
* Added a conditional include
Added a conditional include to handle compile if installed using podspec
* Podspec
Using https://github.com/ivpusic/react-native-image-crop-picker/pull/372 as reference added a podspec.
* Update README.md
Add steps to install using Cocoapods
* Update README.md
Add installation step using cocoapods
* Update README.md