import com.orbaone.orba_one_capture_sdk_core.OrbaOne;
import com.orbaone.orba_one_capture_sdk_core.documentCapture.CountryCode;
import com.orbaone.orba_one_capture_sdk_core.documentCapture.DocumentCaptureStep;
import com.orbaone.orba_one_capture_sdk_core.helpers.DocumentTypes;
DocumentCaptureStep captureConfig = new DocumentCaptureStep.Builder()
.excludeDocument(new DocumentTypes[]{
DocumentTypes.PASSPORT, // this will remove the Passport option
DocumentTypes.DRIVERSLICENSE, // this will remove the Driver's License option
DocumentTypes.NATIONALID // this will remove the National ID option
.excludeCountry(new CountryCode[] {
CountryCode.JM, // this will remove Jamaica from the list of available countries
CountryCode.US // this will remove the United States from the list of available countries
OrbaOne oneSdk = new OrbaOne.Builder()
.setApiKey("publishable-api-key")
.setApplicantId("applicant-id")
.setDocumentCapture(captureConfig)
oneSdk.startVerification(this);