All Versions
16
Latest Version
Avg Release Cycle
11 days
Latest Release
2147 days ago

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.
  • 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, 2019

    Updates:

    • 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.
    • ๐Ÿ› Bug fixes
  • 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
  • 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 -> }
        The android.media.Image is now replaced with internal Image data class same as the one in picture taken listener
      • setLegacyPreviewFrameListener is no longer needed now and it is removed. It should be replaced with setPreviewFrameListener
    • ๐ŸŽ Performance and stability improvements