* upgrading to sdk 28 and androidx
* revert attempt to fix build
* fixing build
* build version fix
* updating example app
* manifest update
* using stable release, instead of beta
* androidx migration doc
* migration doc update
* follow on androidx upgrade after rebase
* upgrading to sdk 28 and androidx
* revert attempt to fix build
* fixing build
* build version fix
* updating example app
* manifest update
* using stable release, instead of beta
* androidx migration doc
* migration doc update
* follow on androidx upgrade after rebase
* initial bootstrap on documentation
* Add EXPO_USAGE and MIgrating page
* add all pages
* add sponsors section to index
* theme
* configs
* clipboard button
* remove blog from docker
* start API.md
* minor updates
depracate permissionDialogTitle and permissionDialogMessage
add new props: androidCameraPermissionOptions and androidRecordAudioPermissionOptions
add functionality: when depracated parameters are provided, they are used instead of new ones (and the warning message is set).
* feat(rn-camera): add deviceOrientation and videoOrientation to record response.
* feat(rn-camera): add deviceOrientation and pictureOrientation to take-picture-response
* fix(rn-camera): unify orientation handling for recording and takeing picture
* fix(types): adjust typescript types
* docs(rn-camra): document new properties
* fix(android): respect actual boolean value instead of only checking if it is present.
* feat(android): implement orientation prop for takePictureAsync
* feat(android): implement orientation prop for recordVideoAsync
* docs(rn-camera): adjust documentation
* fix(types): unmark properties as ios only
* fix(android): use constants
* Adding defaultVideoQuality property for iOS
* Remove quality in Readme
* Restore preset when cleanup the camera
* Validate isRecording to stopRecording
* Update the quality only if has changed.
* Fix AVCaptureSessionPreset type
* Add 'doNotSave' flag to android
Added check for 'doNotSave' flag to prevent saving picture to cache
* Update RNCameraManager to check for 'doNotSave'
Updated RNCameraManager to avoid saving to disk when 'doNotSave' set to true
* Update RNCamera to check for 'doNotSave'
Updated RNCameraManager to avoid saving to disk when 'doNotSave' provided and set to true
* Added notes for doNotSave
Added documentation for using doNotSave option
- Updated RNCamera.js to allow for path in recording options
- Updated RNCamera.m to check for new `path` key in options
- Updated RNCameraView.java to check for `path` property to use
- Updated RNCamera.md to reflect new option