-
Notifications
You must be signed in to change notification settings - Fork 2
CameraX
Devrath edited this page May 29, 2021
·
4 revisions
-
CameraX
is a support library created by Google which comes fromandroid Jetpack components
. - It is designed to support the camera of multiple android devices consistently without writing device-specific code.
- It is actually based on the old
camera-2
API. - Some additional advantages include the camera being life cycle aware.
- It uses the concept of use-cases, meaning every time you want to implement a new feature we make a new
use-case
. The feature means things liketaking a picture
. If you want to create aQR-code
reader we need to create aimage-analyzer
use case etc