All Versions
16
Latest Version
Avg Release Cycle
11 days
Latest Release
2147 days ago
Changelog History
Page 2
Changelog History
Page 2
-
v3.4.3 Changes
April 15, 2019- ๐ Make
android.hardware.camera2
not required in manifest to avoid device limitation on play store.
- ๐ Make
-
v3.4.2 Changes
April 07, 2019- ๐ Move sampleApp to separate project
- Migrate sampleApp to AndroidX
- ๐ Setup local maven repo to build library module (legacy support packages and AndroidX are not compatible under same project)
- ๐ Bug fixes
-
v3.4.1 Changes
March 31, 2019- ๐ Bug fixes
-
v3.4.0 Changes
March 28, 2019Updates:
- Api changes:
- Preview frame listener now accepts a parameter
maxFrameRate
(float)
๐ It is the maximum number of frames per second generated by the listener. Actual frame rate might be less based on device capabilities but will not be more than this value. A float can be set for eg., max frame rate of 0.5f will produce one frame every 2 seconds. Any value less than or equal to zero (<= 0f) will produce maximum frames per second supported by device. Not providing this value uses the maximum possible frame rate.
- Preview frame listener now accepts a parameter
- ๐ Bug fixes
- Api changes:
-
v3.3.0 Changes
March 22, 2019- Api changes
- New api -
enableCameraMode(Modes.CameraMode)
Enable any single camera mode or multiple camera modes by passing [Modes.CameraMode].
Multiple modes can be enabled by passing bitwise or'ed value of multiple [Modes.CameraMode]. - New api -
disableCameraMode(Modes.CameraMode)
Disable any camera mode from [Modes.CameraMode], one at a time
- New api -
- Api changes
-
v3.2.0 Changes
March 15, 2019- ๐ Make some API changes to make it consistent.
- โก๏ธ Updated APIs
addPictureTakenListener { image: Image -> }
๐ The output type has changed from ByteArray to Image which is a wrapper consisting of the original ByteArray image data and some extra metadata which has information about output orientation (more to be added later)setPreviewFrameListener { image: Image -> }
Theandroid.media.Image
is now replaced with internal Image data class same as the one in picture taken listenersetLegacyPreviewFrameListener
is no longer needed now and it is removed. It should be replaced withsetPreviewFrameListener
- ๐ Performance and stability improvements