You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+64Lines changed: 64 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -84,6 +84,13 @@ var cameraHelper: CameraHelper? = CameraHelper()
84
84
```
85
85
86
86
With an activity call, triggering SDK for capture activity can be done.Most operations in **CameraHelper** is **activity based**.
87
+
SDK having multiple openration flow as follows :
88
+
89
+
***CAMERA_CAPTURE_REVIEW** - *Default flow of the CameraHelper.Includes Capture with SDK Camera -> Review Image.*
90
+
***SYSTEM_CAMERA_CAPTURE_REVIEW** - *If user need to capture image with system default camera, this can be used.Includes Capture with system default camera -> Review*.
91
+
***IMAGE_ATTACH_REVIEW** - *If user need to review an image from device / gallery - this option can be used.After attach each image,review and all functionalities depends on review can be avail*.
92
+
93
+
**CAMERA_CAPTURE_REVIEW**
87
94
88
95
```java
89
96
//JAVA
@@ -130,6 +137,63 @@ try {
130
137
Toast.makeText(this, "Failed to open camera -"+ ex.message, Toast.LENGTH_LONG).show()
Toast.makeText(this, "Failed to open camera -"+ ex.message, Toast.LENGTH_LONG).show()
193
+
}
194
+
```
195
+
196
+
133
197
SDK included a supporting classwithstatic configuration - which includes all configurations related to SDK.Confg contains a sub configuration collection **CaptureSupport** - contains all the Capture & review related configurations.
134
198
Config.CaptureSupport : contains various configurations as follows:
0 commit comments