├── .github └── ISSUE_TEMPLATE │ └── config.yml ├── .gitignore ├── 1120-Without License ├── .gitignore ├── README.md ├── app │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── regula │ │ │ └── ble_1120 │ │ │ ├── MainActivity.kt │ │ │ ├── SuccessfulInitActivity.kt │ │ │ └── util │ │ │ ├── BluetoothUtil.kt │ │ │ ├── PermissionUtil.kt │ │ │ └── Utils.kt │ │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ └── ic_launcher_background.xml │ │ ├── layout │ │ ├── activity_main.xml │ │ ├── simple_dialog.xml │ │ └── sucessfull_init_activity.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── values-night │ │ └── themes.xml │ │ ├── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── themes.xml │ │ └── xml │ │ ├── backup_rules.xml │ │ └── data_extraction_rules.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── Advanced └── DocumentReader-Kotlin │ ├── .gitignore │ ├── README.md │ ├── app │ ├── .gitignore │ ├── build.gradle │ ├── lint.xml │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ ├── buttons.json │ │ ├── layer.json │ │ └── layer_animation.json │ │ ├── java │ │ └── com │ │ │ └── regula │ │ │ └── documentreader │ │ │ ├── BottomSheet.kt │ │ │ ├── CommonRecyclerAdapter.kt │ │ │ ├── DeviceActivity.kt │ │ │ ├── DirectResultsActivity.kt │ │ │ ├── Helpers.kt │ │ │ ├── MainActivity.kt │ │ │ ├── OnlineProcessingActivity.kt │ │ │ ├── ResultsActivity.kt │ │ │ ├── SelectionAdapter.kt │ │ │ ├── SettingsActivity.kt │ │ │ ├── StartActivity.kt │ │ │ ├── Types.kt │ │ │ └── utils │ │ │ ├── BluetoothPermissionHelper.kt │ │ │ ├── BluetoothUtil.kt │ │ │ ├── LicenseUtil.kt │ │ │ └── PermissionsHelper.kt │ │ └── res │ │ ├── .gitignore │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ ├── big_close.png │ │ ├── box_outline.xml │ │ ├── button_background.xml │ │ ├── camera.png │ │ ├── capture.png │ │ ├── close.png │ │ ├── credit_card.png │ │ ├── ic_close.xml │ │ ├── ic_launcher_background.xml │ │ ├── info_barcode.png │ │ ├── info_mrz.png │ │ ├── info_viz.png │ │ ├── ir.bmp │ │ ├── light_off.png │ │ ├── light_on.png │ │ ├── one.png │ │ ├── reg_icon_check_fail.xml │ │ ├── reg_icon_check_ok.xml │ │ ├── reg_icon_no_check.xml │ │ ├── rounded.xml │ │ ├── rounded_bottom.xml │ │ ├── rounded_full.xml │ │ ├── rounded_gray.xml │ │ ├── rounded_top.xml │ │ ├── tab_indicator.xml │ │ ├── two.png │ │ ├── uv.bmp │ │ ├── viewfinder.png │ │ └── white.bmp │ │ ├── font │ │ ├── font_black.ttf │ │ ├── font_italic.ttf │ │ └── my_font.xml │ │ ├── layout │ │ ├── activity_device.xml │ │ ├── activity_direct_results.xml │ │ ├── activity_main.xml │ │ ├── activity_online_processing.xml │ │ ├── activity_results.xml │ │ ├── activity_settings.xml │ │ ├── activity_start.xml │ │ ├── bottom_sheet.xml │ │ ├── bottom_sheet_item.xml │ │ ├── fragment_results.xml │ │ ├── fragment_rv.xml │ │ ├── fragment_rv_add_parameter.xml │ │ ├── rv_auth_section.xml │ │ ├── rv_help_big.xml │ │ ├── rv_image.xml │ │ ├── rv_image_pair.xml │ │ ├── rv_section.xml │ │ ├── rv_status.xml │ │ ├── rv_stepper.xml │ │ ├── rv_switch.xml │ │ ├── rv_text.xml │ │ ├── rv_text_result.xml │ │ ├── rv_title_value.xml │ │ └── simple_dialog.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── values-night │ │ └── themes.xml │ │ ├── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── themes.xml │ │ └── xml │ │ └── file_paths.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── Authenticity ├── DocumentReader-authenticity-sample_kotlin │ ├── README.md │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── assets │ │ │ └── Regula │ │ │ │ └── test.pdf │ │ │ ├── java │ │ │ └── com │ │ │ │ └── regula │ │ │ │ └── documentreader │ │ │ │ ├── AuthItemsAdapter.kt │ │ │ │ ├── Helpers.kt │ │ │ │ ├── LivenessDialog.kt │ │ │ │ ├── MainActivity.kt │ │ │ │ ├── MainViewModel.kt │ │ │ │ ├── MainViewModelFactory.kt │ │ │ │ ├── ResultsAuthActivity.kt │ │ │ │ ├── SetValueDialog.kt │ │ │ │ └── util │ │ │ │ └── Utils.kt │ │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ ├── auth_doc_barcode_format.png │ │ │ ├── auth_doc_dull_paper.png │ │ │ ├── auth_doc_encrypted_ipi.png │ │ │ ├── auth_doc_extended_mrz.png │ │ │ ├── auth_doc_extended_ocr.png │ │ │ ├── auth_doc_image_patterns.png │ │ │ ├── auth_doc_ipi.png │ │ │ ├── auth_doc_ir_b900.png │ │ │ ├── auth_doc_ir_visibility.png │ │ │ ├── auth_doc_liveness.png │ │ │ ├── auth_doc_photo_embedding.png │ │ │ ├── auth_doc_portrait_comparison.png │ │ │ ├── auth_doc_security_text.png │ │ │ ├── auth_doc_uv_fibers.png │ │ │ ├── baseline_info_24.xml │ │ │ ├── button_shape.xml │ │ │ ├── doc_auth.png │ │ │ ├── gradient_inactive_top.xml │ │ │ ├── ic_launcher_background.xml │ │ │ ├── info_barcode.png │ │ │ ├── info_mrz.png │ │ │ ├── info_viz.png │ │ │ ├── light_type_ir.bmp │ │ │ ├── light_type_uv.bmp │ │ │ ├── light_type_white.bmp │ │ │ ├── outline_article_shortcut_24.xml │ │ │ ├── reg_icon_check_fail.xml │ │ │ ├── reg_icon_check_ok.xml │ │ │ ├── reg_icon_no_check.xml │ │ │ ├── rounded.xml │ │ │ ├── rounded_top_corners.xml │ │ │ ├── shape_authenticity_check.xml │ │ │ ├── shape_card_info.xml │ │ │ ├── shape_liveness_params_inactive.xml │ │ │ └── warning.png │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ ├── activity_results_auth.xml │ │ │ ├── dialog_description.xml │ │ │ ├── dialog_liveness.xml │ │ │ ├── dialog_progressbar.xml │ │ │ ├── dialog_value_setter.xml │ │ │ ├── dialog_warning.xml │ │ │ ├── element_ident_result.xml │ │ │ ├── element_ocr_security_text_result.xml │ │ │ ├── element_photo_ident_result.xml │ │ │ ├── element_security_feauture_check.xml │ │ │ ├── element_uv_fibers.xml │ │ │ └── item_view.xml │ │ │ ├── menu │ │ │ └── toolbar_actions.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle └── README.md ├── BackendProcessing ├── .gitignore ├── README.md ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── regula │ │ │ └── backend.processing │ │ │ ├── Constants.kt │ │ │ └── MainActivity.kt │ │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ └── ic_launcher_background.xml │ │ ├── layout │ │ ├── activity_main.xml │ │ └── simple_dialog.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── themes.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── Basic ├── DocumentReader-sample_java │ ├── .gitignore │ ├── README.md │ ├── app │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── assets │ │ │ └── Regula │ │ │ │ └── test.pdf │ │ │ ├── java │ │ │ └── com │ │ │ │ └── regula │ │ │ │ └── documentreader │ │ │ │ ├── BaseActivity.java │ │ │ │ ├── MainActivity.java │ │ │ │ ├── MainFragment.java │ │ │ │ ├── ScenarioAdapter.java │ │ │ │ └── util │ │ │ │ ├── BluetoothPermissionHelper.java │ │ │ │ ├── BluetoothUtil.java │ │ │ │ ├── LicenseUtil.java │ │ │ │ ├── PermissionsHelper.java │ │ │ │ └── Utils.java │ │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ ├── correct.png │ │ │ ├── ic_launcher_background.xml │ │ │ ├── id.xml │ │ │ ├── incorrect.png │ │ │ ├── portrait.png │ │ │ └── r_icon.png │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ ├── fragment_main.xml │ │ │ └── simple_dialog.xml │ │ │ ├── menu │ │ │ └── toolbar_actions.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── DocumentReader-sample_kotlin │ ├── .gitignore │ ├── README.md │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── assets │ │ │ └── Regula │ │ │ │ └── test.pdf │ │ │ ├── java │ │ │ └── com │ │ │ │ └── regula │ │ │ │ └── documentreader │ │ │ │ ├── MainActivity.kt │ │ │ │ ├── MainViewModel.kt │ │ │ │ ├── MainViewModelFactory.kt │ │ │ │ ├── ScenarioAdapter.kt │ │ │ │ └── util │ │ │ │ └── Utils.kt │ │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ ├── correct.png │ │ │ ├── ic_launcher_background.xml │ │ │ ├── id.xml │ │ │ ├── incorrect.png │ │ │ ├── live_portrait.png │ │ │ └── portrait.png │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ └── simple_dialog.xml │ │ │ ├── menu │ │ │ └── toolbar_actions.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle └── README.md ├── BleDevice └── BleDevice-Kotlin │ ├── .gitignore │ ├── README.md │ ├── app │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── regula │ │ │ └── demo │ │ │ ├── ConnectDeviceActivity.kt │ │ │ ├── MainActivity.kt │ │ │ └── util │ │ │ ├── BluetoothUtil.kt │ │ │ └── PermissionUtil.kt │ │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ ├── correct.png │ │ ├── ic_launcher_background.xml │ │ ├── id.xml │ │ ├── incorrect.png │ │ └── portrait.png │ │ ├── layout │ │ ├── activity_connect.xml │ │ ├── activity_main.xml │ │ └── simple_dialog.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── themes.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── CertificatePinning ├── .gitignore ├── README.md ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── regula │ │ │ └── certificate.pinning │ │ │ └── MainActivity.kt │ │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ ├── ic_launcher_background.xml │ │ └── mrz_sample.jpg │ │ ├── layout │ │ ├── activity_main.xml │ │ └── simple_dialog.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── themes.xml │ │ └── xml │ │ └── network_security_config.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── CustomCamera └── CustomCamera-Kotlin │ ├── .gitignore │ ├── README.md │ ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── regula │ │ │ └── customcamera_kotlin │ │ │ ├── MainActivity.kt │ │ │ └── custom │ │ │ ├── Camera2Activity.kt │ │ │ ├── CameraActivity.kt │ │ │ ├── CameraConnectionFragment.kt │ │ │ ├── CustomRegActivity.kt │ │ │ └── view │ │ │ └── AutoFitTextureView.kt │ │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ └── ic_launcher_background.xml │ │ ├── layout │ │ ├── activity_camera.xml │ │ ├── activity_camera2.xml │ │ ├── activity_custom_reg.xml │ │ ├── activity_main.xml │ │ ├── camera2_fragment.xml │ │ └── simple_dialog.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── values-night │ │ └── themes.xml │ │ ├── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── themes.xml │ │ └── xml │ │ ├── backup_rules.xml │ │ └── data_extraction_rules.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── CustomRfid-kotlin ├── .gitignore ├── README.md ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── customrfid_kotlin │ │ │ ├── CustomRfidActivity.kt │ │ │ └── MainActivity.kt │ │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ └── ic_launcher_background.xml │ │ ├── layout │ │ ├── activity_custom_rfid.xml │ │ ├── activity_main.xml │ │ └── simple_dialog.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── raw │ │ └── .gitkeep │ │ ├── values-night │ │ └── themes.xml │ │ ├── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── themes.xml │ │ └── xml │ │ ├── backup_rules.xml │ │ └── data_extraction_rules.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── DownloadDatabaseSample ├── README.md ├── app │ ├── build.gradle.kts │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── regula │ │ │ └── documentreader │ │ │ └── ExampleInstrumentedTest.kt │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── regula │ │ │ │ └── documentreader │ │ │ │ ├── MainActivity.kt │ │ │ │ ├── MainViewModel.kt │ │ │ │ ├── MainViewModelFactory.kt │ │ │ │ └── util │ │ │ │ └── Utils.kt │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ ├── ic_launcher_background.xml │ │ │ └── rounded.xml │ │ │ ├── layout │ │ │ ├── main_layout.xml │ │ │ └── simple_dialog.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── backup_rules.xml │ │ │ └── data_extraction_rules.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── regula │ │ └── documentreader │ │ └── ExampleUnitTest.kt ├── build.gradle.kts ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle.kts ├── FeatureDelivery └── FeatureDelivery-Kotlin │ ├── .gitignore │ ├── README.md │ ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── regula │ │ │ └── feature_delivery │ │ │ └── MainActivity.kt │ │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ └── ic_launcher_background.xml │ │ ├── layout │ │ ├── activity_main.xml │ │ └── simple_dialog.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── values-night │ │ └── themes.xml │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── themes.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── regula_core_sdk │ ├── .gitignore │ ├── build.gradle │ └── src │ │ └── main │ │ └── AndroidManifest.xml │ └── settings.gradle ├── Fingerprint └── Fingerprint-kotlin │ ├── .gitignore │ ├── README.md │ ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── regula │ │ │ └── fingerprint_kotlin │ │ │ ├── BluetoothReaderHelper.kt │ │ │ ├── BluetoothReaderService.kt │ │ │ ├── MainActivity.kt │ │ │ └── util │ │ │ ├── BluetoothPermissionHelper.kt │ │ │ ├── Constants.kt │ │ │ └── PermissionsUtil.kt │ │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ └── ic_launcher_background.xml │ │ ├── layout │ │ └── activity_main.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── values-night │ │ └── themes.xml │ │ ├── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── themes.xml │ │ └── xml │ │ ├── backup_rules.xml │ │ └── data_extraction_rules.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── OnlineProcessing ├── OnlineProcessing-With-License-Kotlin │ ├── .gitignore │ ├── README.md │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── regula │ │ │ │ └── onlineprocessing_with_license_kotlin │ │ │ │ ├── MainActivity.kt │ │ │ │ └── util │ │ │ │ └── Constants.kt │ │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ └── simple_dialog.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── backup_rules.xml │ │ │ └── data_extraction_rules.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── OnlineProcessing-Without-License-Kotlin │ ├── .gitignore │ ├── README.md │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── regula │ │ │ │ └── onlineprocessing_without_license_kotlin │ │ │ │ ├── MainActivity.kt │ │ │ │ └── util │ │ │ │ └── Constants.kt │ │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ └── activity_main.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── backup_rules.xml │ │ │ └── data_extraction_rules.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle └── README.md ├── README.md └── RfidCertificates ├── README.md ├── RfidSertificates-Default-Kotlin ├── .gitignore ├── README.md ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ └── Regula │ │ │ ├── certificates │ │ │ └── PKDML.000259.ldif │ │ │ └── certificates_ta │ │ │ ├── FRCVCA_CC.cvCert │ │ │ ├── FRCVCA_CC.pkcs8 │ │ │ ├── FRDV_CC.cvCert │ │ │ ├── FRDV_CC.pkcs8 │ │ │ ├── FRIS_CC.cvCert │ │ │ └── FRIS_CC.pkcs8 │ │ ├── java │ │ └── com │ │ │ └── regula │ │ │ └── certificates_default_kotlin │ │ │ ├── CertificatesUtil.kt │ │ │ └── MainActivity.kt │ │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ └── ic_launcher_background.xml │ │ ├── layout │ │ ├── activity_main.xml │ │ └── simple_dialog.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── values-night │ │ └── themes.xml │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── themes.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle └── RfidSertificates-Runtime-Kotlin ├── .gitignore ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── assets │ └── Regula │ │ └── certificates_ta │ │ ├── FRCVCA_CC.cvCert │ │ ├── FRCVCA_CC.pkcs8 │ │ ├── FRDV_CC.cvCert │ │ ├── FRDV_CC.pkcs8 │ │ ├── FRIS_CC.cvCert │ │ └── FRIS_CC.pkcs8 │ ├── java │ └── com │ │ └── regula │ │ └── rfid_certificates_runtime_kotlin │ │ ├── CertificatesUtil.kt │ │ ├── MainActivity.kt │ │ └── RfidExample.kt │ └── res │ ├── drawable-v24 │ └── ic_launcher_foreground.xml │ ├── drawable │ └── ic_launcher_background.xml │ ├── layout │ ├── activity_main.xml │ └── simple_dialog.xml │ ├── mipmap-anydpi-v26 │ ├── ic_launcher.xml │ └── ic_launcher_round.xml │ ├── values-night │ └── themes.xml │ └── values │ ├── colors.xml │ ├── strings.xml │ └── themes.xml ├── build.gradle ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | build/ 3 | -------------------------------------------------------------------------------- /1120-Without License/.gitignore: -------------------------------------------------------------------------------- 1 | .gradle -------------------------------------------------------------------------------- /1120-Without License/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/1120-Without License/README.md -------------------------------------------------------------------------------- /1120-Without License/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/1120-Without License/app/build.gradle -------------------------------------------------------------------------------- /1120-Without License/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/1120-Without License/app/proguard-rules.pro -------------------------------------------------------------------------------- /1120-Without License/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/1120-Without License/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /1120-Without License/app/src/main/java/com/regula/ble_1120/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/1120-Without License/app/src/main/java/com/regula/ble_1120/MainActivity.kt -------------------------------------------------------------------------------- /1120-Without License/app/src/main/java/com/regula/ble_1120/SuccessfulInitActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/1120-Without License/app/src/main/java/com/regula/ble_1120/SuccessfulInitActivity.kt -------------------------------------------------------------------------------- /1120-Without License/app/src/main/java/com/regula/ble_1120/util/BluetoothUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/1120-Without License/app/src/main/java/com/regula/ble_1120/util/BluetoothUtil.kt -------------------------------------------------------------------------------- /1120-Without License/app/src/main/java/com/regula/ble_1120/util/PermissionUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/1120-Without License/app/src/main/java/com/regula/ble_1120/util/PermissionUtil.kt -------------------------------------------------------------------------------- /1120-Without License/app/src/main/java/com/regula/ble_1120/util/Utils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/1120-Without License/app/src/main/java/com/regula/ble_1120/util/Utils.kt -------------------------------------------------------------------------------- /1120-Without License/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/1120-Without License/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /1120-Without License/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/1120-Without License/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /1120-Without License/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/1120-Without License/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /1120-Without License/app/src/main/res/layout/simple_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/1120-Without License/app/src/main/res/layout/simple_dialog.xml -------------------------------------------------------------------------------- /1120-Without License/app/src/main/res/layout/sucessfull_init_activity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/1120-Without License/app/src/main/res/layout/sucessfull_init_activity.xml -------------------------------------------------------------------------------- /1120-Without License/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/1120-Without License/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /1120-Without License/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/1120-Without License/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /1120-Without License/app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/1120-Without License/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /1120-Without License/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/1120-Without License/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /1120-Without License/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/1120-Without License/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /1120-Without License/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/1120-Without License/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /1120-Without License/app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/1120-Without License/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /1120-Without License/app/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/1120-Without License/app/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /1120-Without License/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/1120-Without License/build.gradle -------------------------------------------------------------------------------- /1120-Without License/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/1120-Without License/gradle.properties -------------------------------------------------------------------------------- /1120-Without License/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/1120-Without License/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /1120-Without License/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/1120-Without License/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /1120-Without License/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/1120-Without License/gradlew -------------------------------------------------------------------------------- /1120-Without License/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/1120-Without License/gradlew.bat -------------------------------------------------------------------------------- /1120-Without License/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/1120-Without License/settings.gradle -------------------------------------------------------------------------------- /Advanced/DocumentReader-Kotlin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Advanced/DocumentReader-Kotlin/.gitignore -------------------------------------------------------------------------------- /Advanced/DocumentReader-Kotlin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Advanced/DocumentReader-Kotlin/README.md -------------------------------------------------------------------------------- /Advanced/DocumentReader-Kotlin/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /Advanced/DocumentReader-Kotlin/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Advanced/DocumentReader-Kotlin/app/build.gradle -------------------------------------------------------------------------------- /Advanced/DocumentReader-Kotlin/app/lint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Advanced/DocumentReader-Kotlin/app/lint.xml -------------------------------------------------------------------------------- /Advanced/DocumentReader-Kotlin/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Advanced/DocumentReader-Kotlin/app/proguard-rules.pro -------------------------------------------------------------------------------- /Advanced/DocumentReader-Kotlin/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Advanced/DocumentReader-Kotlin/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Advanced/DocumentReader-Kotlin/app/src/main/assets/buttons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Advanced/DocumentReader-Kotlin/app/src/main/assets/buttons.json -------------------------------------------------------------------------------- /Advanced/DocumentReader-Kotlin/app/src/main/assets/layer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Advanced/DocumentReader-Kotlin/app/src/main/assets/layer.json -------------------------------------------------------------------------------- /Advanced/DocumentReader-Kotlin/app/src/main/assets/layer_animation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Advanced/DocumentReader-Kotlin/app/src/main/assets/layer_animation.json -------------------------------------------------------------------------------- /Advanced/DocumentReader-Kotlin/app/src/main/java/com/regula/documentreader/BottomSheet.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Advanced/DocumentReader-Kotlin/app/src/main/java/com/regula/documentreader/BottomSheet.kt -------------------------------------------------------------------------------- /Advanced/DocumentReader-Kotlin/app/src/main/java/com/regula/documentreader/CommonRecyclerAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Advanced/DocumentReader-Kotlin/app/src/main/java/com/regula/documentreader/CommonRecyclerAdapter.kt -------------------------------------------------------------------------------- /Advanced/DocumentReader-Kotlin/app/src/main/java/com/regula/documentreader/DeviceActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Advanced/DocumentReader-Kotlin/app/src/main/java/com/regula/documentreader/DeviceActivity.kt -------------------------------------------------------------------------------- /Advanced/DocumentReader-Kotlin/app/src/main/java/com/regula/documentreader/DirectResultsActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Advanced/DocumentReader-Kotlin/app/src/main/java/com/regula/documentreader/DirectResultsActivity.kt -------------------------------------------------------------------------------- /Advanced/DocumentReader-Kotlin/app/src/main/java/com/regula/documentreader/Helpers.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Advanced/DocumentReader-Kotlin/app/src/main/java/com/regula/documentreader/Helpers.kt -------------------------------------------------------------------------------- /Advanced/DocumentReader-Kotlin/app/src/main/java/com/regula/documentreader/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Advanced/DocumentReader-Kotlin/app/src/main/java/com/regula/documentreader/MainActivity.kt -------------------------------------------------------------------------------- /Advanced/DocumentReader-Kotlin/app/src/main/java/com/regula/documentreader/OnlineProcessingActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Advanced/DocumentReader-Kotlin/app/src/main/java/com/regula/documentreader/OnlineProcessingActivity.kt -------------------------------------------------------------------------------- /Advanced/DocumentReader-Kotlin/app/src/main/java/com/regula/documentreader/ResultsActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Advanced/DocumentReader-Kotlin/app/src/main/java/com/regula/documentreader/ResultsActivity.kt -------------------------------------------------------------------------------- /Advanced/DocumentReader-Kotlin/app/src/main/java/com/regula/documentreader/SelectionAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Advanced/DocumentReader-Kotlin/app/src/main/java/com/regula/documentreader/SelectionAdapter.kt -------------------------------------------------------------------------------- /Advanced/DocumentReader-Kotlin/app/src/main/java/com/regula/documentreader/SettingsActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Advanced/DocumentReader-Kotlin/app/src/main/java/com/regula/documentreader/SettingsActivity.kt -------------------------------------------------------------------------------- /Advanced/DocumentReader-Kotlin/app/src/main/java/com/regula/documentreader/StartActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Advanced/DocumentReader-Kotlin/app/src/main/java/com/regula/documentreader/StartActivity.kt -------------------------------------------------------------------------------- /Advanced/DocumentReader-Kotlin/app/src/main/java/com/regula/documentreader/Types.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Advanced/DocumentReader-Kotlin/app/src/main/java/com/regula/documentreader/Types.kt -------------------------------------------------------------------------------- /Advanced/DocumentReader-Kotlin/app/src/main/java/com/regula/documentreader/utils/BluetoothPermissionHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Advanced/DocumentReader-Kotlin/app/src/main/java/com/regula/documentreader/utils/BluetoothPermissionHelper.kt -------------------------------------------------------------------------------- /Advanced/DocumentReader-Kotlin/app/src/main/java/com/regula/documentreader/utils/BluetoothUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Advanced/DocumentReader-Kotlin/app/src/main/java/com/regula/documentreader/utils/BluetoothUtil.kt -------------------------------------------------------------------------------- /Advanced/DocumentReader-Kotlin/app/src/main/java/com/regula/documentreader/utils/LicenseUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Advanced/DocumentReader-Kotlin/app/src/main/java/com/regula/documentreader/utils/LicenseUtil.kt -------------------------------------------------------------------------------- /Advanced/DocumentReader-Kotlin/app/src/main/java/com/regula/documentreader/utils/PermissionsHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Advanced/DocumentReader-Kotlin/app/src/main/java/com/regula/documentreader/utils/PermissionsHelper.kt -------------------------------------------------------------------------------- /Advanced/DocumentReader-Kotlin/app/src/main/res/.gitignore: -------------------------------------------------------------------------------- 1 | /raw -------------------------------------------------------------------------------- /Advanced/DocumentReader-Kotlin/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Advanced/DocumentReader-Kotlin/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /Advanced/DocumentReader-Kotlin/app/src/main/res/drawable/big_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Advanced/DocumentReader-Kotlin/app/src/main/res/drawable/big_close.png -------------------------------------------------------------------------------- /Advanced/DocumentReader-Kotlin/app/src/main/res/drawable/box_outline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Advanced/DocumentReader-Kotlin/app/src/main/res/drawable/box_outline.xml -------------------------------------------------------------------------------- /Advanced/DocumentReader-Kotlin/app/src/main/res/drawable/button_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Advanced/DocumentReader-Kotlin/app/src/main/res/drawable/button_background.xml -------------------------------------------------------------------------------- /Advanced/DocumentReader-Kotlin/app/src/main/res/drawable/camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Advanced/DocumentReader-Kotlin/app/src/main/res/drawable/camera.png -------------------------------------------------------------------------------- /Advanced/DocumentReader-Kotlin/app/src/main/res/drawable/capture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Advanced/DocumentReader-Kotlin/app/src/main/res/drawable/capture.png -------------------------------------------------------------------------------- /Advanced/DocumentReader-Kotlin/app/src/main/res/drawable/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Advanced/DocumentReader-Kotlin/app/src/main/res/drawable/close.png -------------------------------------------------------------------------------- /Advanced/DocumentReader-Kotlin/app/src/main/res/drawable/credit_card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Advanced/DocumentReader-Kotlin/app/src/main/res/drawable/credit_card.png -------------------------------------------------------------------------------- /Advanced/DocumentReader-Kotlin/app/src/main/res/drawable/ic_close.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Advanced/DocumentReader-Kotlin/app/src/main/res/drawable/ic_close.xml -------------------------------------------------------------------------------- /Advanced/DocumentReader-Kotlin/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Advanced/DocumentReader-Kotlin/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /Advanced/DocumentReader-Kotlin/app/src/main/res/drawable/info_barcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Advanced/DocumentReader-Kotlin/app/src/main/res/drawable/info_barcode.png -------------------------------------------------------------------------------- /Advanced/DocumentReader-Kotlin/app/src/main/res/drawable/info_mrz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Advanced/DocumentReader-Kotlin/app/src/main/res/drawable/info_mrz.png -------------------------------------------------------------------------------- /Advanced/DocumentReader-Kotlin/app/src/main/res/drawable/info_viz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Advanced/DocumentReader-Kotlin/app/src/main/res/drawable/info_viz.png -------------------------------------------------------------------------------- /Advanced/DocumentReader-Kotlin/app/src/main/res/drawable/ir.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Advanced/DocumentReader-Kotlin/app/src/main/res/drawable/ir.bmp -------------------------------------------------------------------------------- /Advanced/DocumentReader-Kotlin/app/src/main/res/drawable/light_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Advanced/DocumentReader-Kotlin/app/src/main/res/drawable/light_off.png -------------------------------------------------------------------------------- /Advanced/DocumentReader-Kotlin/app/src/main/res/drawable/light_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Advanced/DocumentReader-Kotlin/app/src/main/res/drawable/light_on.png -------------------------------------------------------------------------------- /Advanced/DocumentReader-Kotlin/app/src/main/res/drawable/one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Advanced/DocumentReader-Kotlin/app/src/main/res/drawable/one.png -------------------------------------------------------------------------------- /Advanced/DocumentReader-Kotlin/app/src/main/res/drawable/reg_icon_check_fail.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Advanced/DocumentReader-Kotlin/app/src/main/res/drawable/reg_icon_check_fail.xml -------------------------------------------------------------------------------- /Advanced/DocumentReader-Kotlin/app/src/main/res/drawable/reg_icon_check_ok.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Advanced/DocumentReader-Kotlin/app/src/main/res/drawable/reg_icon_check_ok.xml -------------------------------------------------------------------------------- /Advanced/DocumentReader-Kotlin/app/src/main/res/drawable/reg_icon_no_check.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Advanced/DocumentReader-Kotlin/app/src/main/res/drawable/reg_icon_no_check.xml -------------------------------------------------------------------------------- /Advanced/DocumentReader-Kotlin/app/src/main/res/drawable/rounded.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Advanced/DocumentReader-Kotlin/app/src/main/res/drawable/rounded.xml -------------------------------------------------------------------------------- /Advanced/DocumentReader-Kotlin/app/src/main/res/drawable/rounded_bottom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Advanced/DocumentReader-Kotlin/app/src/main/res/drawable/rounded_bottom.xml -------------------------------------------------------------------------------- /Advanced/DocumentReader-Kotlin/app/src/main/res/drawable/rounded_full.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Advanced/DocumentReader-Kotlin/app/src/main/res/drawable/rounded_full.xml -------------------------------------------------------------------------------- /Advanced/DocumentReader-Kotlin/app/src/main/res/drawable/rounded_gray.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Advanced/DocumentReader-Kotlin/app/src/main/res/drawable/rounded_gray.xml -------------------------------------------------------------------------------- /Advanced/DocumentReader-Kotlin/app/src/main/res/drawable/rounded_top.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Advanced/DocumentReader-Kotlin/app/src/main/res/drawable/rounded_top.xml -------------------------------------------------------------------------------- /Advanced/DocumentReader-Kotlin/app/src/main/res/drawable/tab_indicator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Advanced/DocumentReader-Kotlin/app/src/main/res/drawable/tab_indicator.xml -------------------------------------------------------------------------------- /Advanced/DocumentReader-Kotlin/app/src/main/res/drawable/two.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Advanced/DocumentReader-Kotlin/app/src/main/res/drawable/two.png -------------------------------------------------------------------------------- /Advanced/DocumentReader-Kotlin/app/src/main/res/drawable/uv.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Advanced/DocumentReader-Kotlin/app/src/main/res/drawable/uv.bmp -------------------------------------------------------------------------------- /Advanced/DocumentReader-Kotlin/app/src/main/res/drawable/viewfinder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Advanced/DocumentReader-Kotlin/app/src/main/res/drawable/viewfinder.png -------------------------------------------------------------------------------- /Advanced/DocumentReader-Kotlin/app/src/main/res/drawable/white.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Advanced/DocumentReader-Kotlin/app/src/main/res/drawable/white.bmp -------------------------------------------------------------------------------- /Advanced/DocumentReader-Kotlin/app/src/main/res/font/font_black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Advanced/DocumentReader-Kotlin/app/src/main/res/font/font_black.ttf -------------------------------------------------------------------------------- /Advanced/DocumentReader-Kotlin/app/src/main/res/font/font_italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Advanced/DocumentReader-Kotlin/app/src/main/res/font/font_italic.ttf -------------------------------------------------------------------------------- /Advanced/DocumentReader-Kotlin/app/src/main/res/font/my_font.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Advanced/DocumentReader-Kotlin/app/src/main/res/font/my_font.xml -------------------------------------------------------------------------------- /Advanced/DocumentReader-Kotlin/app/src/main/res/layout/activity_device.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Advanced/DocumentReader-Kotlin/app/src/main/res/layout/activity_device.xml -------------------------------------------------------------------------------- /Advanced/DocumentReader-Kotlin/app/src/main/res/layout/activity_direct_results.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Advanced/DocumentReader-Kotlin/app/src/main/res/layout/activity_direct_results.xml -------------------------------------------------------------------------------- /Advanced/DocumentReader-Kotlin/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Advanced/DocumentReader-Kotlin/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /Advanced/DocumentReader-Kotlin/app/src/main/res/layout/activity_online_processing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Advanced/DocumentReader-Kotlin/app/src/main/res/layout/activity_online_processing.xml -------------------------------------------------------------------------------- /Advanced/DocumentReader-Kotlin/app/src/main/res/layout/activity_results.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Advanced/DocumentReader-Kotlin/app/src/main/res/layout/activity_results.xml -------------------------------------------------------------------------------- /Advanced/DocumentReader-Kotlin/app/src/main/res/layout/activity_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Advanced/DocumentReader-Kotlin/app/src/main/res/layout/activity_settings.xml -------------------------------------------------------------------------------- /Advanced/DocumentReader-Kotlin/app/src/main/res/layout/activity_start.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Advanced/DocumentReader-Kotlin/app/src/main/res/layout/activity_start.xml -------------------------------------------------------------------------------- /Advanced/DocumentReader-Kotlin/app/src/main/res/layout/bottom_sheet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Advanced/DocumentReader-Kotlin/app/src/main/res/layout/bottom_sheet.xml -------------------------------------------------------------------------------- /Advanced/DocumentReader-Kotlin/app/src/main/res/layout/bottom_sheet_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Advanced/DocumentReader-Kotlin/app/src/main/res/layout/bottom_sheet_item.xml -------------------------------------------------------------------------------- /Advanced/DocumentReader-Kotlin/app/src/main/res/layout/fragment_results.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Advanced/DocumentReader-Kotlin/app/src/main/res/layout/fragment_results.xml -------------------------------------------------------------------------------- /Advanced/DocumentReader-Kotlin/app/src/main/res/layout/fragment_rv.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Advanced/DocumentReader-Kotlin/app/src/main/res/layout/fragment_rv.xml -------------------------------------------------------------------------------- /Advanced/DocumentReader-Kotlin/app/src/main/res/layout/fragment_rv_add_parameter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Advanced/DocumentReader-Kotlin/app/src/main/res/layout/fragment_rv_add_parameter.xml -------------------------------------------------------------------------------- /Advanced/DocumentReader-Kotlin/app/src/main/res/layout/rv_auth_section.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Advanced/DocumentReader-Kotlin/app/src/main/res/layout/rv_auth_section.xml -------------------------------------------------------------------------------- /Advanced/DocumentReader-Kotlin/app/src/main/res/layout/rv_help_big.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Advanced/DocumentReader-Kotlin/app/src/main/res/layout/rv_help_big.xml -------------------------------------------------------------------------------- /Advanced/DocumentReader-Kotlin/app/src/main/res/layout/rv_image.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Advanced/DocumentReader-Kotlin/app/src/main/res/layout/rv_image.xml -------------------------------------------------------------------------------- /Advanced/DocumentReader-Kotlin/app/src/main/res/layout/rv_image_pair.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Advanced/DocumentReader-Kotlin/app/src/main/res/layout/rv_image_pair.xml -------------------------------------------------------------------------------- /Advanced/DocumentReader-Kotlin/app/src/main/res/layout/rv_section.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Advanced/DocumentReader-Kotlin/app/src/main/res/layout/rv_section.xml -------------------------------------------------------------------------------- /Advanced/DocumentReader-Kotlin/app/src/main/res/layout/rv_status.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Advanced/DocumentReader-Kotlin/app/src/main/res/layout/rv_status.xml -------------------------------------------------------------------------------- /Advanced/DocumentReader-Kotlin/app/src/main/res/layout/rv_stepper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Advanced/DocumentReader-Kotlin/app/src/main/res/layout/rv_stepper.xml -------------------------------------------------------------------------------- /Advanced/DocumentReader-Kotlin/app/src/main/res/layout/rv_switch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Advanced/DocumentReader-Kotlin/app/src/main/res/layout/rv_switch.xml -------------------------------------------------------------------------------- /Advanced/DocumentReader-Kotlin/app/src/main/res/layout/rv_text.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Advanced/DocumentReader-Kotlin/app/src/main/res/layout/rv_text.xml -------------------------------------------------------------------------------- /Advanced/DocumentReader-Kotlin/app/src/main/res/layout/rv_text_result.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Advanced/DocumentReader-Kotlin/app/src/main/res/layout/rv_text_result.xml -------------------------------------------------------------------------------- /Advanced/DocumentReader-Kotlin/app/src/main/res/layout/rv_title_value.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Advanced/DocumentReader-Kotlin/app/src/main/res/layout/rv_title_value.xml -------------------------------------------------------------------------------- /Advanced/DocumentReader-Kotlin/app/src/main/res/layout/simple_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Advanced/DocumentReader-Kotlin/app/src/main/res/layout/simple_dialog.xml -------------------------------------------------------------------------------- /Advanced/DocumentReader-Kotlin/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Advanced/DocumentReader-Kotlin/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /Advanced/DocumentReader-Kotlin/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Advanced/DocumentReader-Kotlin/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /Advanced/DocumentReader-Kotlin/app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Advanced/DocumentReader-Kotlin/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /Advanced/DocumentReader-Kotlin/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Advanced/DocumentReader-Kotlin/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /Advanced/DocumentReader-Kotlin/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Advanced/DocumentReader-Kotlin/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /Advanced/DocumentReader-Kotlin/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Advanced/DocumentReader-Kotlin/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Advanced/DocumentReader-Kotlin/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Advanced/DocumentReader-Kotlin/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /Advanced/DocumentReader-Kotlin/app/src/main/res/xml/file_paths.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Advanced/DocumentReader-Kotlin/app/src/main/res/xml/file_paths.xml -------------------------------------------------------------------------------- /Advanced/DocumentReader-Kotlin/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Advanced/DocumentReader-Kotlin/build.gradle -------------------------------------------------------------------------------- /Advanced/DocumentReader-Kotlin/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Advanced/DocumentReader-Kotlin/gradle.properties -------------------------------------------------------------------------------- /Advanced/DocumentReader-Kotlin/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Advanced/DocumentReader-Kotlin/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Advanced/DocumentReader-Kotlin/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Advanced/DocumentReader-Kotlin/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Advanced/DocumentReader-Kotlin/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Advanced/DocumentReader-Kotlin/gradlew -------------------------------------------------------------------------------- /Advanced/DocumentReader-Kotlin/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Advanced/DocumentReader-Kotlin/gradlew.bat -------------------------------------------------------------------------------- /Advanced/DocumentReader-Kotlin/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Advanced/DocumentReader-Kotlin/settings.gradle -------------------------------------------------------------------------------- /Authenticity/DocumentReader-authenticity-sample_kotlin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Authenticity/DocumentReader-authenticity-sample_kotlin/README.md -------------------------------------------------------------------------------- /Authenticity/DocumentReader-authenticity-sample_kotlin/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Authenticity/DocumentReader-authenticity-sample_kotlin/app/build.gradle -------------------------------------------------------------------------------- /Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/assets/Regula/test.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/assets/Regula/test.pdf -------------------------------------------------------------------------------- /Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/java/com/regula/documentreader/AuthItemsAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/java/com/regula/documentreader/AuthItemsAdapter.kt -------------------------------------------------------------------------------- /Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/java/com/regula/documentreader/Helpers.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/java/com/regula/documentreader/Helpers.kt -------------------------------------------------------------------------------- /Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/java/com/regula/documentreader/LivenessDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/java/com/regula/documentreader/LivenessDialog.kt -------------------------------------------------------------------------------- /Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/java/com/regula/documentreader/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/java/com/regula/documentreader/MainActivity.kt -------------------------------------------------------------------------------- /Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/java/com/regula/documentreader/MainViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/java/com/regula/documentreader/MainViewModel.kt -------------------------------------------------------------------------------- /Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/java/com/regula/documentreader/MainViewModelFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/java/com/regula/documentreader/MainViewModelFactory.kt -------------------------------------------------------------------------------- /Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/java/com/regula/documentreader/ResultsAuthActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/java/com/regula/documentreader/ResultsAuthActivity.kt -------------------------------------------------------------------------------- /Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/java/com/regula/documentreader/SetValueDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/java/com/regula/documentreader/SetValueDialog.kt -------------------------------------------------------------------------------- /Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/java/com/regula/documentreader/util/Utils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/java/com/regula/documentreader/util/Utils.kt -------------------------------------------------------------------------------- /Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/drawable/auth_doc_barcode_format.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/drawable/auth_doc_barcode_format.png -------------------------------------------------------------------------------- /Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/drawable/auth_doc_dull_paper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/drawable/auth_doc_dull_paper.png -------------------------------------------------------------------------------- /Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/drawable/auth_doc_encrypted_ipi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/drawable/auth_doc_encrypted_ipi.png -------------------------------------------------------------------------------- /Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/drawable/auth_doc_extended_mrz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/drawable/auth_doc_extended_mrz.png -------------------------------------------------------------------------------- /Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/drawable/auth_doc_extended_ocr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/drawable/auth_doc_extended_ocr.png -------------------------------------------------------------------------------- /Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/drawable/auth_doc_image_patterns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/drawable/auth_doc_image_patterns.png -------------------------------------------------------------------------------- /Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/drawable/auth_doc_ipi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/drawable/auth_doc_ipi.png -------------------------------------------------------------------------------- /Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/drawable/auth_doc_ir_b900.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/drawable/auth_doc_ir_b900.png -------------------------------------------------------------------------------- /Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/drawable/auth_doc_ir_visibility.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/drawable/auth_doc_ir_visibility.png -------------------------------------------------------------------------------- /Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/drawable/auth_doc_liveness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/drawable/auth_doc_liveness.png -------------------------------------------------------------------------------- /Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/drawable/auth_doc_photo_embedding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/drawable/auth_doc_photo_embedding.png -------------------------------------------------------------------------------- /Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/drawable/auth_doc_portrait_comparison.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/drawable/auth_doc_portrait_comparison.png -------------------------------------------------------------------------------- /Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/drawable/auth_doc_security_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/drawable/auth_doc_security_text.png -------------------------------------------------------------------------------- /Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/drawable/auth_doc_uv_fibers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/drawable/auth_doc_uv_fibers.png -------------------------------------------------------------------------------- /Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/drawable/baseline_info_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/drawable/baseline_info_24.xml -------------------------------------------------------------------------------- /Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/drawable/button_shape.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/drawable/button_shape.xml -------------------------------------------------------------------------------- /Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/drawable/doc_auth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/drawable/doc_auth.png -------------------------------------------------------------------------------- /Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/drawable/gradient_inactive_top.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/drawable/gradient_inactive_top.xml -------------------------------------------------------------------------------- /Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/drawable/info_barcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/drawable/info_barcode.png -------------------------------------------------------------------------------- /Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/drawable/info_mrz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/drawable/info_mrz.png -------------------------------------------------------------------------------- /Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/drawable/info_viz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/drawable/info_viz.png -------------------------------------------------------------------------------- /Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/drawable/light_type_ir.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/drawable/light_type_ir.bmp -------------------------------------------------------------------------------- /Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/drawable/light_type_uv.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/drawable/light_type_uv.bmp -------------------------------------------------------------------------------- /Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/drawable/light_type_white.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/drawable/light_type_white.bmp -------------------------------------------------------------------------------- /Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/drawable/outline_article_shortcut_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/drawable/outline_article_shortcut_24.xml -------------------------------------------------------------------------------- /Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/drawable/reg_icon_check_fail.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/drawable/reg_icon_check_fail.xml -------------------------------------------------------------------------------- /Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/drawable/reg_icon_check_ok.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/drawable/reg_icon_check_ok.xml -------------------------------------------------------------------------------- /Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/drawable/reg_icon_no_check.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/drawable/reg_icon_no_check.xml -------------------------------------------------------------------------------- /Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/drawable/rounded.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/drawable/rounded.xml -------------------------------------------------------------------------------- /Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/drawable/rounded_top_corners.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/drawable/rounded_top_corners.xml -------------------------------------------------------------------------------- /Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/drawable/shape_authenticity_check.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/drawable/shape_authenticity_check.xml -------------------------------------------------------------------------------- /Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/drawable/shape_card_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/drawable/shape_card_info.xml -------------------------------------------------------------------------------- /Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/drawable/shape_liveness_params_inactive.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/drawable/shape_liveness_params_inactive.xml -------------------------------------------------------------------------------- /Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/drawable/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/drawable/warning.png -------------------------------------------------------------------------------- /Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/layout/activity_results_auth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/layout/activity_results_auth.xml -------------------------------------------------------------------------------- /Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/layout/dialog_description.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/layout/dialog_description.xml -------------------------------------------------------------------------------- /Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/layout/dialog_liveness.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/layout/dialog_liveness.xml -------------------------------------------------------------------------------- /Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/layout/dialog_progressbar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/layout/dialog_progressbar.xml -------------------------------------------------------------------------------- /Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/layout/dialog_value_setter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/layout/dialog_value_setter.xml -------------------------------------------------------------------------------- /Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/layout/dialog_warning.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/layout/dialog_warning.xml -------------------------------------------------------------------------------- /Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/layout/element_ident_result.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/layout/element_ident_result.xml -------------------------------------------------------------------------------- /Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/layout/element_ocr_security_text_result.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/layout/element_ocr_security_text_result.xml -------------------------------------------------------------------------------- /Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/layout/element_photo_ident_result.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/layout/element_photo_ident_result.xml -------------------------------------------------------------------------------- /Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/layout/element_security_feauture_check.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/layout/element_security_feauture_check.xml -------------------------------------------------------------------------------- /Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/layout/element_uv_fibers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/layout/element_uv_fibers.xml -------------------------------------------------------------------------------- /Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/layout/item_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/layout/item_view.xml -------------------------------------------------------------------------------- /Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/menu/toolbar_actions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/menu/toolbar_actions.xml -------------------------------------------------------------------------------- /Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Authenticity/DocumentReader-authenticity-sample_kotlin/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Authenticity/DocumentReader-authenticity-sample_kotlin/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Authenticity/DocumentReader-authenticity-sample_kotlin/build.gradle -------------------------------------------------------------------------------- /Authenticity/DocumentReader-authenticity-sample_kotlin/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Authenticity/DocumentReader-authenticity-sample_kotlin/gradle.properties -------------------------------------------------------------------------------- /Authenticity/DocumentReader-authenticity-sample_kotlin/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Authenticity/DocumentReader-authenticity-sample_kotlin/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Authenticity/DocumentReader-authenticity-sample_kotlin/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Authenticity/DocumentReader-authenticity-sample_kotlin/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Authenticity/DocumentReader-authenticity-sample_kotlin/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Authenticity/DocumentReader-authenticity-sample_kotlin/gradlew -------------------------------------------------------------------------------- /Authenticity/DocumentReader-authenticity-sample_kotlin/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Authenticity/DocumentReader-authenticity-sample_kotlin/gradlew.bat -------------------------------------------------------------------------------- /Authenticity/DocumentReader-authenticity-sample_kotlin/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Authenticity/DocumentReader-authenticity-sample_kotlin/settings.gradle -------------------------------------------------------------------------------- /Authenticity/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Authenticity/README.md -------------------------------------------------------------------------------- /BackendProcessing/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/BackendProcessing/.gitignore -------------------------------------------------------------------------------- /BackendProcessing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/BackendProcessing/README.md -------------------------------------------------------------------------------- /BackendProcessing/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /BackendProcessing/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/BackendProcessing/app/build.gradle -------------------------------------------------------------------------------- /BackendProcessing/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/BackendProcessing/app/proguard-rules.pro -------------------------------------------------------------------------------- /BackendProcessing/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/BackendProcessing/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /BackendProcessing/app/src/main/java/com/regula/backend.processing/Constants.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/BackendProcessing/app/src/main/java/com/regula/backend.processing/Constants.kt -------------------------------------------------------------------------------- /BackendProcessing/app/src/main/java/com/regula/backend.processing/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/BackendProcessing/app/src/main/java/com/regula/backend.processing/MainActivity.kt -------------------------------------------------------------------------------- /BackendProcessing/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/BackendProcessing/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /BackendProcessing/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/BackendProcessing/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /BackendProcessing/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/BackendProcessing/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /BackendProcessing/app/src/main/res/layout/simple_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/BackendProcessing/app/src/main/res/layout/simple_dialog.xml -------------------------------------------------------------------------------- /BackendProcessing/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/BackendProcessing/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /BackendProcessing/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/BackendProcessing/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /BackendProcessing/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/BackendProcessing/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /BackendProcessing/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/BackendProcessing/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /BackendProcessing/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/BackendProcessing/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /BackendProcessing/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/BackendProcessing/build.gradle -------------------------------------------------------------------------------- /BackendProcessing/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/BackendProcessing/gradle.properties -------------------------------------------------------------------------------- /BackendProcessing/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/BackendProcessing/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /BackendProcessing/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/BackendProcessing/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /BackendProcessing/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/BackendProcessing/gradlew -------------------------------------------------------------------------------- /BackendProcessing/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/BackendProcessing/gradlew.bat -------------------------------------------------------------------------------- /BackendProcessing/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/BackendProcessing/settings.gradle -------------------------------------------------------------------------------- /Basic/DocumentReader-sample_java/.gitignore: -------------------------------------------------------------------------------- 1 | .gradle 2 | app/build 3 | -------------------------------------------------------------------------------- /Basic/DocumentReader-sample_java/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Basic/DocumentReader-sample_java/README.md -------------------------------------------------------------------------------- /Basic/DocumentReader-sample_java/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Basic/DocumentReader-sample_java/app/build.gradle -------------------------------------------------------------------------------- /Basic/DocumentReader-sample_java/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Basic/DocumentReader-sample_java/app/proguard-rules.pro -------------------------------------------------------------------------------- /Basic/DocumentReader-sample_java/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Basic/DocumentReader-sample_java/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Basic/DocumentReader-sample_java/app/src/main/assets/Regula/test.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Basic/DocumentReader-sample_java/app/src/main/assets/Regula/test.pdf -------------------------------------------------------------------------------- /Basic/DocumentReader-sample_java/app/src/main/java/com/regula/documentreader/BaseActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Basic/DocumentReader-sample_java/app/src/main/java/com/regula/documentreader/BaseActivity.java -------------------------------------------------------------------------------- /Basic/DocumentReader-sample_java/app/src/main/java/com/regula/documentreader/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Basic/DocumentReader-sample_java/app/src/main/java/com/regula/documentreader/MainActivity.java -------------------------------------------------------------------------------- /Basic/DocumentReader-sample_java/app/src/main/java/com/regula/documentreader/MainFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Basic/DocumentReader-sample_java/app/src/main/java/com/regula/documentreader/MainFragment.java -------------------------------------------------------------------------------- /Basic/DocumentReader-sample_java/app/src/main/java/com/regula/documentreader/ScenarioAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Basic/DocumentReader-sample_java/app/src/main/java/com/regula/documentreader/ScenarioAdapter.java -------------------------------------------------------------------------------- /Basic/DocumentReader-sample_java/app/src/main/java/com/regula/documentreader/util/BluetoothPermissionHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Basic/DocumentReader-sample_java/app/src/main/java/com/regula/documentreader/util/BluetoothPermissionHelper.java -------------------------------------------------------------------------------- /Basic/DocumentReader-sample_java/app/src/main/java/com/regula/documentreader/util/BluetoothUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Basic/DocumentReader-sample_java/app/src/main/java/com/regula/documentreader/util/BluetoothUtil.java -------------------------------------------------------------------------------- /Basic/DocumentReader-sample_java/app/src/main/java/com/regula/documentreader/util/LicenseUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Basic/DocumentReader-sample_java/app/src/main/java/com/regula/documentreader/util/LicenseUtil.java -------------------------------------------------------------------------------- /Basic/DocumentReader-sample_java/app/src/main/java/com/regula/documentreader/util/PermissionsHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Basic/DocumentReader-sample_java/app/src/main/java/com/regula/documentreader/util/PermissionsHelper.java -------------------------------------------------------------------------------- /Basic/DocumentReader-sample_java/app/src/main/java/com/regula/documentreader/util/Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Basic/DocumentReader-sample_java/app/src/main/java/com/regula/documentreader/util/Utils.java -------------------------------------------------------------------------------- /Basic/DocumentReader-sample_java/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Basic/DocumentReader-sample_java/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /Basic/DocumentReader-sample_java/app/src/main/res/drawable/correct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Basic/DocumentReader-sample_java/app/src/main/res/drawable/correct.png -------------------------------------------------------------------------------- /Basic/DocumentReader-sample_java/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Basic/DocumentReader-sample_java/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /Basic/DocumentReader-sample_java/app/src/main/res/drawable/id.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Basic/DocumentReader-sample_java/app/src/main/res/drawable/id.xml -------------------------------------------------------------------------------- /Basic/DocumentReader-sample_java/app/src/main/res/drawable/incorrect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Basic/DocumentReader-sample_java/app/src/main/res/drawable/incorrect.png -------------------------------------------------------------------------------- /Basic/DocumentReader-sample_java/app/src/main/res/drawable/portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Basic/DocumentReader-sample_java/app/src/main/res/drawable/portrait.png -------------------------------------------------------------------------------- /Basic/DocumentReader-sample_java/app/src/main/res/drawable/r_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Basic/DocumentReader-sample_java/app/src/main/res/drawable/r_icon.png -------------------------------------------------------------------------------- /Basic/DocumentReader-sample_java/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Basic/DocumentReader-sample_java/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /Basic/DocumentReader-sample_java/app/src/main/res/layout/fragment_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Basic/DocumentReader-sample_java/app/src/main/res/layout/fragment_main.xml -------------------------------------------------------------------------------- /Basic/DocumentReader-sample_java/app/src/main/res/layout/simple_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Basic/DocumentReader-sample_java/app/src/main/res/layout/simple_dialog.xml -------------------------------------------------------------------------------- /Basic/DocumentReader-sample_java/app/src/main/res/menu/toolbar_actions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Basic/DocumentReader-sample_java/app/src/main/res/menu/toolbar_actions.xml -------------------------------------------------------------------------------- /Basic/DocumentReader-sample_java/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Basic/DocumentReader-sample_java/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /Basic/DocumentReader-sample_java/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Basic/DocumentReader-sample_java/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /Basic/DocumentReader-sample_java/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Basic/DocumentReader-sample_java/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /Basic/DocumentReader-sample_java/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Basic/DocumentReader-sample_java/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Basic/DocumentReader-sample_java/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Basic/DocumentReader-sample_java/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Basic/DocumentReader-sample_java/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Basic/DocumentReader-sample_java/build.gradle -------------------------------------------------------------------------------- /Basic/DocumentReader-sample_java/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Basic/DocumentReader-sample_java/gradle.properties -------------------------------------------------------------------------------- /Basic/DocumentReader-sample_java/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Basic/DocumentReader-sample_java/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Basic/DocumentReader-sample_java/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Basic/DocumentReader-sample_java/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Basic/DocumentReader-sample_java/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Basic/DocumentReader-sample_java/gradlew -------------------------------------------------------------------------------- /Basic/DocumentReader-sample_java/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Basic/DocumentReader-sample_java/gradlew.bat -------------------------------------------------------------------------------- /Basic/DocumentReader-sample_java/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Basic/DocumentReader-sample_java/settings.gradle -------------------------------------------------------------------------------- /Basic/DocumentReader-sample_kotlin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Basic/DocumentReader-sample_kotlin/.gitignore -------------------------------------------------------------------------------- /Basic/DocumentReader-sample_kotlin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Basic/DocumentReader-sample_kotlin/README.md -------------------------------------------------------------------------------- /Basic/DocumentReader-sample_kotlin/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Basic/DocumentReader-sample_kotlin/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Basic/DocumentReader-sample_kotlin/app/build.gradle -------------------------------------------------------------------------------- /Basic/DocumentReader-sample_kotlin/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Basic/DocumentReader-sample_kotlin/app/proguard-rules.pro -------------------------------------------------------------------------------- /Basic/DocumentReader-sample_kotlin/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Basic/DocumentReader-sample_kotlin/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Basic/DocumentReader-sample_kotlin/app/src/main/assets/Regula/test.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Basic/DocumentReader-sample_kotlin/app/src/main/assets/Regula/test.pdf -------------------------------------------------------------------------------- /Basic/DocumentReader-sample_kotlin/app/src/main/java/com/regula/documentreader/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Basic/DocumentReader-sample_kotlin/app/src/main/java/com/regula/documentreader/MainActivity.kt -------------------------------------------------------------------------------- /Basic/DocumentReader-sample_kotlin/app/src/main/java/com/regula/documentreader/MainViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Basic/DocumentReader-sample_kotlin/app/src/main/java/com/regula/documentreader/MainViewModel.kt -------------------------------------------------------------------------------- /Basic/DocumentReader-sample_kotlin/app/src/main/java/com/regula/documentreader/MainViewModelFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Basic/DocumentReader-sample_kotlin/app/src/main/java/com/regula/documentreader/MainViewModelFactory.kt -------------------------------------------------------------------------------- /Basic/DocumentReader-sample_kotlin/app/src/main/java/com/regula/documentreader/ScenarioAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Basic/DocumentReader-sample_kotlin/app/src/main/java/com/regula/documentreader/ScenarioAdapter.kt -------------------------------------------------------------------------------- /Basic/DocumentReader-sample_kotlin/app/src/main/java/com/regula/documentreader/util/Utils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Basic/DocumentReader-sample_kotlin/app/src/main/java/com/regula/documentreader/util/Utils.kt -------------------------------------------------------------------------------- /Basic/DocumentReader-sample_kotlin/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Basic/DocumentReader-sample_kotlin/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /Basic/DocumentReader-sample_kotlin/app/src/main/res/drawable/correct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Basic/DocumentReader-sample_kotlin/app/src/main/res/drawable/correct.png -------------------------------------------------------------------------------- /Basic/DocumentReader-sample_kotlin/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Basic/DocumentReader-sample_kotlin/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /Basic/DocumentReader-sample_kotlin/app/src/main/res/drawable/id.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Basic/DocumentReader-sample_kotlin/app/src/main/res/drawable/id.xml -------------------------------------------------------------------------------- /Basic/DocumentReader-sample_kotlin/app/src/main/res/drawable/incorrect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Basic/DocumentReader-sample_kotlin/app/src/main/res/drawable/incorrect.png -------------------------------------------------------------------------------- /Basic/DocumentReader-sample_kotlin/app/src/main/res/drawable/live_portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Basic/DocumentReader-sample_kotlin/app/src/main/res/drawable/live_portrait.png -------------------------------------------------------------------------------- /Basic/DocumentReader-sample_kotlin/app/src/main/res/drawable/portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Basic/DocumentReader-sample_kotlin/app/src/main/res/drawable/portrait.png -------------------------------------------------------------------------------- /Basic/DocumentReader-sample_kotlin/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Basic/DocumentReader-sample_kotlin/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /Basic/DocumentReader-sample_kotlin/app/src/main/res/layout/simple_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Basic/DocumentReader-sample_kotlin/app/src/main/res/layout/simple_dialog.xml -------------------------------------------------------------------------------- /Basic/DocumentReader-sample_kotlin/app/src/main/res/menu/toolbar_actions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Basic/DocumentReader-sample_kotlin/app/src/main/res/menu/toolbar_actions.xml -------------------------------------------------------------------------------- /Basic/DocumentReader-sample_kotlin/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Basic/DocumentReader-sample_kotlin/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /Basic/DocumentReader-sample_kotlin/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Basic/DocumentReader-sample_kotlin/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /Basic/DocumentReader-sample_kotlin/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Basic/DocumentReader-sample_kotlin/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /Basic/DocumentReader-sample_kotlin/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Basic/DocumentReader-sample_kotlin/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Basic/DocumentReader-sample_kotlin/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Basic/DocumentReader-sample_kotlin/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Basic/DocumentReader-sample_kotlin/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Basic/DocumentReader-sample_kotlin/build.gradle -------------------------------------------------------------------------------- /Basic/DocumentReader-sample_kotlin/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Basic/DocumentReader-sample_kotlin/gradle.properties -------------------------------------------------------------------------------- /Basic/DocumentReader-sample_kotlin/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Basic/DocumentReader-sample_kotlin/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Basic/DocumentReader-sample_kotlin/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Basic/DocumentReader-sample_kotlin/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Basic/DocumentReader-sample_kotlin/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Basic/DocumentReader-sample_kotlin/gradlew -------------------------------------------------------------------------------- /Basic/DocumentReader-sample_kotlin/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Basic/DocumentReader-sample_kotlin/gradlew.bat -------------------------------------------------------------------------------- /Basic/DocumentReader-sample_kotlin/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Basic/DocumentReader-sample_kotlin/settings.gradle -------------------------------------------------------------------------------- /Basic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Basic/README.md -------------------------------------------------------------------------------- /BleDevice/BleDevice-Kotlin/.gitignore: -------------------------------------------------------------------------------- 1 | .gradle 2 | app/build -------------------------------------------------------------------------------- /BleDevice/BleDevice-Kotlin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/BleDevice/BleDevice-Kotlin/README.md -------------------------------------------------------------------------------- /BleDevice/BleDevice-Kotlin/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/BleDevice/BleDevice-Kotlin/app/build.gradle -------------------------------------------------------------------------------- /BleDevice/BleDevice-Kotlin/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/BleDevice/BleDevice-Kotlin/app/proguard-rules.pro -------------------------------------------------------------------------------- /BleDevice/BleDevice-Kotlin/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/BleDevice/BleDevice-Kotlin/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /BleDevice/BleDevice-Kotlin/app/src/main/java/com/regula/demo/ConnectDeviceActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/BleDevice/BleDevice-Kotlin/app/src/main/java/com/regula/demo/ConnectDeviceActivity.kt -------------------------------------------------------------------------------- /BleDevice/BleDevice-Kotlin/app/src/main/java/com/regula/demo/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/BleDevice/BleDevice-Kotlin/app/src/main/java/com/regula/demo/MainActivity.kt -------------------------------------------------------------------------------- /BleDevice/BleDevice-Kotlin/app/src/main/java/com/regula/demo/util/BluetoothUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/BleDevice/BleDevice-Kotlin/app/src/main/java/com/regula/demo/util/BluetoothUtil.kt -------------------------------------------------------------------------------- /BleDevice/BleDevice-Kotlin/app/src/main/java/com/regula/demo/util/PermissionUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/BleDevice/BleDevice-Kotlin/app/src/main/java/com/regula/demo/util/PermissionUtil.kt -------------------------------------------------------------------------------- /BleDevice/BleDevice-Kotlin/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/BleDevice/BleDevice-Kotlin/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /BleDevice/BleDevice-Kotlin/app/src/main/res/drawable/correct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/BleDevice/BleDevice-Kotlin/app/src/main/res/drawable/correct.png -------------------------------------------------------------------------------- /BleDevice/BleDevice-Kotlin/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/BleDevice/BleDevice-Kotlin/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /BleDevice/BleDevice-Kotlin/app/src/main/res/drawable/id.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/BleDevice/BleDevice-Kotlin/app/src/main/res/drawable/id.xml -------------------------------------------------------------------------------- /BleDevice/BleDevice-Kotlin/app/src/main/res/drawable/incorrect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/BleDevice/BleDevice-Kotlin/app/src/main/res/drawable/incorrect.png -------------------------------------------------------------------------------- /BleDevice/BleDevice-Kotlin/app/src/main/res/drawable/portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/BleDevice/BleDevice-Kotlin/app/src/main/res/drawable/portrait.png -------------------------------------------------------------------------------- /BleDevice/BleDevice-Kotlin/app/src/main/res/layout/activity_connect.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/BleDevice/BleDevice-Kotlin/app/src/main/res/layout/activity_connect.xml -------------------------------------------------------------------------------- /BleDevice/BleDevice-Kotlin/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/BleDevice/BleDevice-Kotlin/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /BleDevice/BleDevice-Kotlin/app/src/main/res/layout/simple_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/BleDevice/BleDevice-Kotlin/app/src/main/res/layout/simple_dialog.xml -------------------------------------------------------------------------------- /BleDevice/BleDevice-Kotlin/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/BleDevice/BleDevice-Kotlin/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /BleDevice/BleDevice-Kotlin/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/BleDevice/BleDevice-Kotlin/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /BleDevice/BleDevice-Kotlin/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/BleDevice/BleDevice-Kotlin/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /BleDevice/BleDevice-Kotlin/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/BleDevice/BleDevice-Kotlin/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /BleDevice/BleDevice-Kotlin/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/BleDevice/BleDevice-Kotlin/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /BleDevice/BleDevice-Kotlin/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/BleDevice/BleDevice-Kotlin/build.gradle -------------------------------------------------------------------------------- /BleDevice/BleDevice-Kotlin/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/BleDevice/BleDevice-Kotlin/gradle.properties -------------------------------------------------------------------------------- /BleDevice/BleDevice-Kotlin/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/BleDevice/BleDevice-Kotlin/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /BleDevice/BleDevice-Kotlin/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/BleDevice/BleDevice-Kotlin/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /BleDevice/BleDevice-Kotlin/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/BleDevice/BleDevice-Kotlin/gradlew -------------------------------------------------------------------------------- /BleDevice/BleDevice-Kotlin/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/BleDevice/BleDevice-Kotlin/gradlew.bat -------------------------------------------------------------------------------- /BleDevice/BleDevice-Kotlin/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/BleDevice/BleDevice-Kotlin/settings.gradle -------------------------------------------------------------------------------- /CertificatePinning/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/CertificatePinning/.gitignore -------------------------------------------------------------------------------- /CertificatePinning/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/CertificatePinning/README.md -------------------------------------------------------------------------------- /CertificatePinning/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /CertificatePinning/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/CertificatePinning/app/build.gradle -------------------------------------------------------------------------------- /CertificatePinning/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/CertificatePinning/app/proguard-rules.pro -------------------------------------------------------------------------------- /CertificatePinning/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/CertificatePinning/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /CertificatePinning/app/src/main/java/com/regula/certificate.pinning/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/CertificatePinning/app/src/main/java/com/regula/certificate.pinning/MainActivity.kt -------------------------------------------------------------------------------- /CertificatePinning/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/CertificatePinning/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /CertificatePinning/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/CertificatePinning/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /CertificatePinning/app/src/main/res/drawable/mrz_sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/CertificatePinning/app/src/main/res/drawable/mrz_sample.jpg -------------------------------------------------------------------------------- /CertificatePinning/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/CertificatePinning/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /CertificatePinning/app/src/main/res/layout/simple_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/CertificatePinning/app/src/main/res/layout/simple_dialog.xml -------------------------------------------------------------------------------- /CertificatePinning/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/CertificatePinning/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /CertificatePinning/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/CertificatePinning/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /CertificatePinning/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/CertificatePinning/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /CertificatePinning/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/CertificatePinning/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /CertificatePinning/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/CertificatePinning/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /CertificatePinning/app/src/main/res/xml/network_security_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/CertificatePinning/app/src/main/res/xml/network_security_config.xml -------------------------------------------------------------------------------- /CertificatePinning/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/CertificatePinning/build.gradle -------------------------------------------------------------------------------- /CertificatePinning/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/CertificatePinning/gradle.properties -------------------------------------------------------------------------------- /CertificatePinning/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/CertificatePinning/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /CertificatePinning/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/CertificatePinning/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /CertificatePinning/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/CertificatePinning/gradlew -------------------------------------------------------------------------------- /CertificatePinning/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/CertificatePinning/gradlew.bat -------------------------------------------------------------------------------- /CertificatePinning/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/CertificatePinning/settings.gradle -------------------------------------------------------------------------------- /CustomCamera/CustomCamera-Kotlin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/CustomCamera/CustomCamera-Kotlin/.gitignore -------------------------------------------------------------------------------- /CustomCamera/CustomCamera-Kotlin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/CustomCamera/CustomCamera-Kotlin/README.md -------------------------------------------------------------------------------- /CustomCamera/CustomCamera-Kotlin/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /CustomCamera/CustomCamera-Kotlin/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/CustomCamera/CustomCamera-Kotlin/app/build.gradle -------------------------------------------------------------------------------- /CustomCamera/CustomCamera-Kotlin/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/CustomCamera/CustomCamera-Kotlin/app/proguard-rules.pro -------------------------------------------------------------------------------- /CustomCamera/CustomCamera-Kotlin/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/CustomCamera/CustomCamera-Kotlin/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /CustomCamera/CustomCamera-Kotlin/app/src/main/java/com/regula/customcamera_kotlin/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/CustomCamera/CustomCamera-Kotlin/app/src/main/java/com/regula/customcamera_kotlin/MainActivity.kt -------------------------------------------------------------------------------- /CustomCamera/CustomCamera-Kotlin/app/src/main/java/com/regula/customcamera_kotlin/custom/Camera2Activity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/CustomCamera/CustomCamera-Kotlin/app/src/main/java/com/regula/customcamera_kotlin/custom/Camera2Activity.kt -------------------------------------------------------------------------------- /CustomCamera/CustomCamera-Kotlin/app/src/main/java/com/regula/customcamera_kotlin/custom/CameraActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/CustomCamera/CustomCamera-Kotlin/app/src/main/java/com/regula/customcamera_kotlin/custom/CameraActivity.kt -------------------------------------------------------------------------------- /CustomCamera/CustomCamera-Kotlin/app/src/main/java/com/regula/customcamera_kotlin/custom/CameraConnectionFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/CustomCamera/CustomCamera-Kotlin/app/src/main/java/com/regula/customcamera_kotlin/custom/CameraConnectionFragment.kt -------------------------------------------------------------------------------- /CustomCamera/CustomCamera-Kotlin/app/src/main/java/com/regula/customcamera_kotlin/custom/CustomRegActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/CustomCamera/CustomCamera-Kotlin/app/src/main/java/com/regula/customcamera_kotlin/custom/CustomRegActivity.kt -------------------------------------------------------------------------------- /CustomCamera/CustomCamera-Kotlin/app/src/main/java/com/regula/customcamera_kotlin/custom/view/AutoFitTextureView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/CustomCamera/CustomCamera-Kotlin/app/src/main/java/com/regula/customcamera_kotlin/custom/view/AutoFitTextureView.kt -------------------------------------------------------------------------------- /CustomCamera/CustomCamera-Kotlin/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/CustomCamera/CustomCamera-Kotlin/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /CustomCamera/CustomCamera-Kotlin/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/CustomCamera/CustomCamera-Kotlin/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /CustomCamera/CustomCamera-Kotlin/app/src/main/res/layout/activity_camera.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/CustomCamera/CustomCamera-Kotlin/app/src/main/res/layout/activity_camera.xml -------------------------------------------------------------------------------- /CustomCamera/CustomCamera-Kotlin/app/src/main/res/layout/activity_camera2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/CustomCamera/CustomCamera-Kotlin/app/src/main/res/layout/activity_camera2.xml -------------------------------------------------------------------------------- /CustomCamera/CustomCamera-Kotlin/app/src/main/res/layout/activity_custom_reg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/CustomCamera/CustomCamera-Kotlin/app/src/main/res/layout/activity_custom_reg.xml -------------------------------------------------------------------------------- /CustomCamera/CustomCamera-Kotlin/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/CustomCamera/CustomCamera-Kotlin/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /CustomCamera/CustomCamera-Kotlin/app/src/main/res/layout/camera2_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/CustomCamera/CustomCamera-Kotlin/app/src/main/res/layout/camera2_fragment.xml -------------------------------------------------------------------------------- /CustomCamera/CustomCamera-Kotlin/app/src/main/res/layout/simple_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/CustomCamera/CustomCamera-Kotlin/app/src/main/res/layout/simple_dialog.xml -------------------------------------------------------------------------------- /CustomCamera/CustomCamera-Kotlin/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/CustomCamera/CustomCamera-Kotlin/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /CustomCamera/CustomCamera-Kotlin/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/CustomCamera/CustomCamera-Kotlin/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /CustomCamera/CustomCamera-Kotlin/app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/CustomCamera/CustomCamera-Kotlin/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /CustomCamera/CustomCamera-Kotlin/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/CustomCamera/CustomCamera-Kotlin/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /CustomCamera/CustomCamera-Kotlin/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/CustomCamera/CustomCamera-Kotlin/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /CustomCamera/CustomCamera-Kotlin/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/CustomCamera/CustomCamera-Kotlin/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /CustomCamera/CustomCamera-Kotlin/app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/CustomCamera/CustomCamera-Kotlin/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /CustomCamera/CustomCamera-Kotlin/app/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/CustomCamera/CustomCamera-Kotlin/app/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /CustomCamera/CustomCamera-Kotlin/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/CustomCamera/CustomCamera-Kotlin/build.gradle -------------------------------------------------------------------------------- /CustomCamera/CustomCamera-Kotlin/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/CustomCamera/CustomCamera-Kotlin/gradle.properties -------------------------------------------------------------------------------- /CustomCamera/CustomCamera-Kotlin/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/CustomCamera/CustomCamera-Kotlin/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /CustomCamera/CustomCamera-Kotlin/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/CustomCamera/CustomCamera-Kotlin/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /CustomCamera/CustomCamera-Kotlin/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/CustomCamera/CustomCamera-Kotlin/gradlew -------------------------------------------------------------------------------- /CustomCamera/CustomCamera-Kotlin/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/CustomCamera/CustomCamera-Kotlin/gradlew.bat -------------------------------------------------------------------------------- /CustomCamera/CustomCamera-Kotlin/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/CustomCamera/CustomCamera-Kotlin/settings.gradle -------------------------------------------------------------------------------- /CustomRfid-kotlin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/CustomRfid-kotlin/.gitignore -------------------------------------------------------------------------------- /CustomRfid-kotlin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/CustomRfid-kotlin/README.md -------------------------------------------------------------------------------- /CustomRfid-kotlin/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | /.idea -------------------------------------------------------------------------------- /CustomRfid-kotlin/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/CustomRfid-kotlin/app/build.gradle -------------------------------------------------------------------------------- /CustomRfid-kotlin/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/CustomRfid-kotlin/app/proguard-rules.pro -------------------------------------------------------------------------------- /CustomRfid-kotlin/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/CustomRfid-kotlin/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /CustomRfid-kotlin/app/src/main/java/com/example/customrfid_kotlin/CustomRfidActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/CustomRfid-kotlin/app/src/main/java/com/example/customrfid_kotlin/CustomRfidActivity.kt -------------------------------------------------------------------------------- /CustomRfid-kotlin/app/src/main/java/com/example/customrfid_kotlin/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/CustomRfid-kotlin/app/src/main/java/com/example/customrfid_kotlin/MainActivity.kt -------------------------------------------------------------------------------- /CustomRfid-kotlin/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/CustomRfid-kotlin/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /CustomRfid-kotlin/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/CustomRfid-kotlin/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /CustomRfid-kotlin/app/src/main/res/layout/activity_custom_rfid.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/CustomRfid-kotlin/app/src/main/res/layout/activity_custom_rfid.xml -------------------------------------------------------------------------------- /CustomRfid-kotlin/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/CustomRfid-kotlin/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /CustomRfid-kotlin/app/src/main/res/layout/simple_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/CustomRfid-kotlin/app/src/main/res/layout/simple_dialog.xml -------------------------------------------------------------------------------- /CustomRfid-kotlin/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/CustomRfid-kotlin/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /CustomRfid-kotlin/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/CustomRfid-kotlin/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /CustomRfid-kotlin/app/src/main/res/raw/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CustomRfid-kotlin/app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/CustomRfid-kotlin/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /CustomRfid-kotlin/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/CustomRfid-kotlin/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /CustomRfid-kotlin/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/CustomRfid-kotlin/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /CustomRfid-kotlin/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/CustomRfid-kotlin/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /CustomRfid-kotlin/app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/CustomRfid-kotlin/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /CustomRfid-kotlin/app/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/CustomRfid-kotlin/app/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /CustomRfid-kotlin/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/CustomRfid-kotlin/build.gradle -------------------------------------------------------------------------------- /CustomRfid-kotlin/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/CustomRfid-kotlin/gradle.properties -------------------------------------------------------------------------------- /CustomRfid-kotlin/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/CustomRfid-kotlin/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /CustomRfid-kotlin/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/CustomRfid-kotlin/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /CustomRfid-kotlin/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/CustomRfid-kotlin/gradlew -------------------------------------------------------------------------------- /CustomRfid-kotlin/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/CustomRfid-kotlin/gradlew.bat -------------------------------------------------------------------------------- /CustomRfid-kotlin/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/CustomRfid-kotlin/settings.gradle -------------------------------------------------------------------------------- /DownloadDatabaseSample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/DownloadDatabaseSample/README.md -------------------------------------------------------------------------------- /DownloadDatabaseSample/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/DownloadDatabaseSample/app/build.gradle.kts -------------------------------------------------------------------------------- /DownloadDatabaseSample/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/DownloadDatabaseSample/app/proguard-rules.pro -------------------------------------------------------------------------------- /DownloadDatabaseSample/app/src/androidTest/java/com/regula/documentreader/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/DownloadDatabaseSample/app/src/androidTest/java/com/regula/documentreader/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /DownloadDatabaseSample/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/DownloadDatabaseSample/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /DownloadDatabaseSample/app/src/main/java/com/regula/documentreader/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/DownloadDatabaseSample/app/src/main/java/com/regula/documentreader/MainActivity.kt -------------------------------------------------------------------------------- /DownloadDatabaseSample/app/src/main/java/com/regula/documentreader/MainViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/DownloadDatabaseSample/app/src/main/java/com/regula/documentreader/MainViewModel.kt -------------------------------------------------------------------------------- /DownloadDatabaseSample/app/src/main/java/com/regula/documentreader/MainViewModelFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/DownloadDatabaseSample/app/src/main/java/com/regula/documentreader/MainViewModelFactory.kt -------------------------------------------------------------------------------- /DownloadDatabaseSample/app/src/main/java/com/regula/documentreader/util/Utils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/DownloadDatabaseSample/app/src/main/java/com/regula/documentreader/util/Utils.kt -------------------------------------------------------------------------------- /DownloadDatabaseSample/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/DownloadDatabaseSample/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /DownloadDatabaseSample/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/DownloadDatabaseSample/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /DownloadDatabaseSample/app/src/main/res/drawable/rounded.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/DownloadDatabaseSample/app/src/main/res/drawable/rounded.xml -------------------------------------------------------------------------------- /DownloadDatabaseSample/app/src/main/res/layout/main_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/DownloadDatabaseSample/app/src/main/res/layout/main_layout.xml -------------------------------------------------------------------------------- /DownloadDatabaseSample/app/src/main/res/layout/simple_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/DownloadDatabaseSample/app/src/main/res/layout/simple_dialog.xml -------------------------------------------------------------------------------- /DownloadDatabaseSample/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/DownloadDatabaseSample/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /DownloadDatabaseSample/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/DownloadDatabaseSample/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /DownloadDatabaseSample/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/DownloadDatabaseSample/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /DownloadDatabaseSample/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/DownloadDatabaseSample/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /DownloadDatabaseSample/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/DownloadDatabaseSample/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /DownloadDatabaseSample/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/DownloadDatabaseSample/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /DownloadDatabaseSample/app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/DownloadDatabaseSample/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /DownloadDatabaseSample/app/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/DownloadDatabaseSample/app/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /DownloadDatabaseSample/app/src/test/java/com/regula/documentreader/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/DownloadDatabaseSample/app/src/test/java/com/regula/documentreader/ExampleUnitTest.kt -------------------------------------------------------------------------------- /DownloadDatabaseSample/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/DownloadDatabaseSample/build.gradle.kts -------------------------------------------------------------------------------- /DownloadDatabaseSample/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/DownloadDatabaseSample/gradle.properties -------------------------------------------------------------------------------- /DownloadDatabaseSample/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/DownloadDatabaseSample/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /DownloadDatabaseSample/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/DownloadDatabaseSample/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /DownloadDatabaseSample/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/DownloadDatabaseSample/gradlew -------------------------------------------------------------------------------- /DownloadDatabaseSample/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/DownloadDatabaseSample/gradlew.bat -------------------------------------------------------------------------------- /DownloadDatabaseSample/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/DownloadDatabaseSample/settings.gradle.kts -------------------------------------------------------------------------------- /FeatureDelivery/FeatureDelivery-Kotlin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/FeatureDelivery/FeatureDelivery-Kotlin/.gitignore -------------------------------------------------------------------------------- /FeatureDelivery/FeatureDelivery-Kotlin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/FeatureDelivery/FeatureDelivery-Kotlin/README.md -------------------------------------------------------------------------------- /FeatureDelivery/FeatureDelivery-Kotlin/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /FeatureDelivery/FeatureDelivery-Kotlin/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/FeatureDelivery/FeatureDelivery-Kotlin/app/build.gradle -------------------------------------------------------------------------------- /FeatureDelivery/FeatureDelivery-Kotlin/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/FeatureDelivery/FeatureDelivery-Kotlin/app/proguard-rules.pro -------------------------------------------------------------------------------- /FeatureDelivery/FeatureDelivery-Kotlin/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/FeatureDelivery/FeatureDelivery-Kotlin/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /FeatureDelivery/FeatureDelivery-Kotlin/app/src/main/java/com/regula/feature_delivery/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/FeatureDelivery/FeatureDelivery-Kotlin/app/src/main/java/com/regula/feature_delivery/MainActivity.kt -------------------------------------------------------------------------------- /FeatureDelivery/FeatureDelivery-Kotlin/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/FeatureDelivery/FeatureDelivery-Kotlin/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /FeatureDelivery/FeatureDelivery-Kotlin/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/FeatureDelivery/FeatureDelivery-Kotlin/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /FeatureDelivery/FeatureDelivery-Kotlin/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/FeatureDelivery/FeatureDelivery-Kotlin/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /FeatureDelivery/FeatureDelivery-Kotlin/app/src/main/res/layout/simple_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/FeatureDelivery/FeatureDelivery-Kotlin/app/src/main/res/layout/simple_dialog.xml -------------------------------------------------------------------------------- /FeatureDelivery/FeatureDelivery-Kotlin/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/FeatureDelivery/FeatureDelivery-Kotlin/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /FeatureDelivery/FeatureDelivery-Kotlin/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/FeatureDelivery/FeatureDelivery-Kotlin/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /FeatureDelivery/FeatureDelivery-Kotlin/app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/FeatureDelivery/FeatureDelivery-Kotlin/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /FeatureDelivery/FeatureDelivery-Kotlin/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/FeatureDelivery/FeatureDelivery-Kotlin/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /FeatureDelivery/FeatureDelivery-Kotlin/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/FeatureDelivery/FeatureDelivery-Kotlin/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /FeatureDelivery/FeatureDelivery-Kotlin/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/FeatureDelivery/FeatureDelivery-Kotlin/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /FeatureDelivery/FeatureDelivery-Kotlin/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/FeatureDelivery/FeatureDelivery-Kotlin/build.gradle -------------------------------------------------------------------------------- /FeatureDelivery/FeatureDelivery-Kotlin/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/FeatureDelivery/FeatureDelivery-Kotlin/gradle.properties -------------------------------------------------------------------------------- /FeatureDelivery/FeatureDelivery-Kotlin/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/FeatureDelivery/FeatureDelivery-Kotlin/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /FeatureDelivery/FeatureDelivery-Kotlin/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/FeatureDelivery/FeatureDelivery-Kotlin/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /FeatureDelivery/FeatureDelivery-Kotlin/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/FeatureDelivery/FeatureDelivery-Kotlin/gradlew -------------------------------------------------------------------------------- /FeatureDelivery/FeatureDelivery-Kotlin/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/FeatureDelivery/FeatureDelivery-Kotlin/gradlew.bat -------------------------------------------------------------------------------- /FeatureDelivery/FeatureDelivery-Kotlin/regula_core_sdk/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /FeatureDelivery/FeatureDelivery-Kotlin/regula_core_sdk/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/FeatureDelivery/FeatureDelivery-Kotlin/regula_core_sdk/build.gradle -------------------------------------------------------------------------------- /FeatureDelivery/FeatureDelivery-Kotlin/regula_core_sdk/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/FeatureDelivery/FeatureDelivery-Kotlin/regula_core_sdk/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /FeatureDelivery/FeatureDelivery-Kotlin/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/FeatureDelivery/FeatureDelivery-Kotlin/settings.gradle -------------------------------------------------------------------------------- /Fingerprint/Fingerprint-kotlin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Fingerprint/Fingerprint-kotlin/.gitignore -------------------------------------------------------------------------------- /Fingerprint/Fingerprint-kotlin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Fingerprint/Fingerprint-kotlin/README.md -------------------------------------------------------------------------------- /Fingerprint/Fingerprint-kotlin/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /Fingerprint/Fingerprint-kotlin/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Fingerprint/Fingerprint-kotlin/app/build.gradle -------------------------------------------------------------------------------- /Fingerprint/Fingerprint-kotlin/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Fingerprint/Fingerprint-kotlin/app/proguard-rules.pro -------------------------------------------------------------------------------- /Fingerprint/Fingerprint-kotlin/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Fingerprint/Fingerprint-kotlin/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Fingerprint/Fingerprint-kotlin/app/src/main/java/com/regula/fingerprint_kotlin/BluetoothReaderHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Fingerprint/Fingerprint-kotlin/app/src/main/java/com/regula/fingerprint_kotlin/BluetoothReaderHelper.kt -------------------------------------------------------------------------------- /Fingerprint/Fingerprint-kotlin/app/src/main/java/com/regula/fingerprint_kotlin/BluetoothReaderService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Fingerprint/Fingerprint-kotlin/app/src/main/java/com/regula/fingerprint_kotlin/BluetoothReaderService.kt -------------------------------------------------------------------------------- /Fingerprint/Fingerprint-kotlin/app/src/main/java/com/regula/fingerprint_kotlin/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Fingerprint/Fingerprint-kotlin/app/src/main/java/com/regula/fingerprint_kotlin/MainActivity.kt -------------------------------------------------------------------------------- /Fingerprint/Fingerprint-kotlin/app/src/main/java/com/regula/fingerprint_kotlin/util/BluetoothPermissionHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Fingerprint/Fingerprint-kotlin/app/src/main/java/com/regula/fingerprint_kotlin/util/BluetoothPermissionHelper.kt -------------------------------------------------------------------------------- /Fingerprint/Fingerprint-kotlin/app/src/main/java/com/regula/fingerprint_kotlin/util/Constants.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Fingerprint/Fingerprint-kotlin/app/src/main/java/com/regula/fingerprint_kotlin/util/Constants.kt -------------------------------------------------------------------------------- /Fingerprint/Fingerprint-kotlin/app/src/main/java/com/regula/fingerprint_kotlin/util/PermissionsUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Fingerprint/Fingerprint-kotlin/app/src/main/java/com/regula/fingerprint_kotlin/util/PermissionsUtil.kt -------------------------------------------------------------------------------- /Fingerprint/Fingerprint-kotlin/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Fingerprint/Fingerprint-kotlin/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /Fingerprint/Fingerprint-kotlin/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Fingerprint/Fingerprint-kotlin/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /Fingerprint/Fingerprint-kotlin/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Fingerprint/Fingerprint-kotlin/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /Fingerprint/Fingerprint-kotlin/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Fingerprint/Fingerprint-kotlin/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /Fingerprint/Fingerprint-kotlin/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Fingerprint/Fingerprint-kotlin/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /Fingerprint/Fingerprint-kotlin/app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Fingerprint/Fingerprint-kotlin/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /Fingerprint/Fingerprint-kotlin/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Fingerprint/Fingerprint-kotlin/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /Fingerprint/Fingerprint-kotlin/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Fingerprint/Fingerprint-kotlin/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Fingerprint/Fingerprint-kotlin/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Fingerprint/Fingerprint-kotlin/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /Fingerprint/Fingerprint-kotlin/app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Fingerprint/Fingerprint-kotlin/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /Fingerprint/Fingerprint-kotlin/app/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Fingerprint/Fingerprint-kotlin/app/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /Fingerprint/Fingerprint-kotlin/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Fingerprint/Fingerprint-kotlin/build.gradle -------------------------------------------------------------------------------- /Fingerprint/Fingerprint-kotlin/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Fingerprint/Fingerprint-kotlin/gradle.properties -------------------------------------------------------------------------------- /Fingerprint/Fingerprint-kotlin/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Fingerprint/Fingerprint-kotlin/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Fingerprint/Fingerprint-kotlin/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Fingerprint/Fingerprint-kotlin/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Fingerprint/Fingerprint-kotlin/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Fingerprint/Fingerprint-kotlin/gradlew -------------------------------------------------------------------------------- /Fingerprint/Fingerprint-kotlin/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Fingerprint/Fingerprint-kotlin/gradlew.bat -------------------------------------------------------------------------------- /Fingerprint/Fingerprint-kotlin/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/Fingerprint/Fingerprint-kotlin/settings.gradle -------------------------------------------------------------------------------- /OnlineProcessing/OnlineProcessing-With-License-Kotlin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/OnlineProcessing/OnlineProcessing-With-License-Kotlin/.gitignore -------------------------------------------------------------------------------- /OnlineProcessing/OnlineProcessing-With-License-Kotlin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/OnlineProcessing/OnlineProcessing-With-License-Kotlin/README.md -------------------------------------------------------------------------------- /OnlineProcessing/OnlineProcessing-With-License-Kotlin/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /OnlineProcessing/OnlineProcessing-With-License-Kotlin/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/OnlineProcessing/OnlineProcessing-With-License-Kotlin/app/build.gradle -------------------------------------------------------------------------------- /OnlineProcessing/OnlineProcessing-With-License-Kotlin/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/OnlineProcessing/OnlineProcessing-With-License-Kotlin/app/proguard-rules.pro -------------------------------------------------------------------------------- /OnlineProcessing/OnlineProcessing-With-License-Kotlin/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/OnlineProcessing/OnlineProcessing-With-License-Kotlin/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /OnlineProcessing/OnlineProcessing-With-License-Kotlin/app/src/main/java/com/regula/onlineprocessing_with_license_kotlin/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/OnlineProcessing/OnlineProcessing-With-License-Kotlin/app/src/main/java/com/regula/onlineprocessing_with_license_kotlin/MainActivity.kt -------------------------------------------------------------------------------- /OnlineProcessing/OnlineProcessing-With-License-Kotlin/app/src/main/java/com/regula/onlineprocessing_with_license_kotlin/util/Constants.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/OnlineProcessing/OnlineProcessing-With-License-Kotlin/app/src/main/java/com/regula/onlineprocessing_with_license_kotlin/util/Constants.kt -------------------------------------------------------------------------------- /OnlineProcessing/OnlineProcessing-With-License-Kotlin/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/OnlineProcessing/OnlineProcessing-With-License-Kotlin/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /OnlineProcessing/OnlineProcessing-With-License-Kotlin/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/OnlineProcessing/OnlineProcessing-With-License-Kotlin/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /OnlineProcessing/OnlineProcessing-With-License-Kotlin/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/OnlineProcessing/OnlineProcessing-With-License-Kotlin/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /OnlineProcessing/OnlineProcessing-With-License-Kotlin/app/src/main/res/layout/simple_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/OnlineProcessing/OnlineProcessing-With-License-Kotlin/app/src/main/res/layout/simple_dialog.xml -------------------------------------------------------------------------------- /OnlineProcessing/OnlineProcessing-With-License-Kotlin/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/OnlineProcessing/OnlineProcessing-With-License-Kotlin/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /OnlineProcessing/OnlineProcessing-With-License-Kotlin/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/OnlineProcessing/OnlineProcessing-With-License-Kotlin/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /OnlineProcessing/OnlineProcessing-With-License-Kotlin/app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/OnlineProcessing/OnlineProcessing-With-License-Kotlin/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /OnlineProcessing/OnlineProcessing-With-License-Kotlin/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/OnlineProcessing/OnlineProcessing-With-License-Kotlin/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /OnlineProcessing/OnlineProcessing-With-License-Kotlin/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/OnlineProcessing/OnlineProcessing-With-License-Kotlin/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /OnlineProcessing/OnlineProcessing-With-License-Kotlin/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/OnlineProcessing/OnlineProcessing-With-License-Kotlin/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /OnlineProcessing/OnlineProcessing-With-License-Kotlin/app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/OnlineProcessing/OnlineProcessing-With-License-Kotlin/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /OnlineProcessing/OnlineProcessing-With-License-Kotlin/app/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/OnlineProcessing/OnlineProcessing-With-License-Kotlin/app/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /OnlineProcessing/OnlineProcessing-With-License-Kotlin/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/OnlineProcessing/OnlineProcessing-With-License-Kotlin/build.gradle -------------------------------------------------------------------------------- /OnlineProcessing/OnlineProcessing-With-License-Kotlin/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/OnlineProcessing/OnlineProcessing-With-License-Kotlin/gradle.properties -------------------------------------------------------------------------------- /OnlineProcessing/OnlineProcessing-With-License-Kotlin/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/OnlineProcessing/OnlineProcessing-With-License-Kotlin/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /OnlineProcessing/OnlineProcessing-With-License-Kotlin/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/OnlineProcessing/OnlineProcessing-With-License-Kotlin/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /OnlineProcessing/OnlineProcessing-With-License-Kotlin/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/OnlineProcessing/OnlineProcessing-With-License-Kotlin/gradlew -------------------------------------------------------------------------------- /OnlineProcessing/OnlineProcessing-With-License-Kotlin/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/OnlineProcessing/OnlineProcessing-With-License-Kotlin/gradlew.bat -------------------------------------------------------------------------------- /OnlineProcessing/OnlineProcessing-With-License-Kotlin/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/OnlineProcessing/OnlineProcessing-With-License-Kotlin/settings.gradle -------------------------------------------------------------------------------- /OnlineProcessing/OnlineProcessing-Without-License-Kotlin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/OnlineProcessing/OnlineProcessing-Without-License-Kotlin/.gitignore -------------------------------------------------------------------------------- /OnlineProcessing/OnlineProcessing-Without-License-Kotlin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/OnlineProcessing/OnlineProcessing-Without-License-Kotlin/README.md -------------------------------------------------------------------------------- /OnlineProcessing/OnlineProcessing-Without-License-Kotlin/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /OnlineProcessing/OnlineProcessing-Without-License-Kotlin/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/OnlineProcessing/OnlineProcessing-Without-License-Kotlin/app/build.gradle -------------------------------------------------------------------------------- /OnlineProcessing/OnlineProcessing-Without-License-Kotlin/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/OnlineProcessing/OnlineProcessing-Without-License-Kotlin/app/proguard-rules.pro -------------------------------------------------------------------------------- /OnlineProcessing/OnlineProcessing-Without-License-Kotlin/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/OnlineProcessing/OnlineProcessing-Without-License-Kotlin/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /OnlineProcessing/OnlineProcessing-Without-License-Kotlin/app/src/main/java/com/regula/onlineprocessing_without_license_kotlin/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/OnlineProcessing/OnlineProcessing-Without-License-Kotlin/app/src/main/java/com/regula/onlineprocessing_without_license_kotlin/MainActivity.kt -------------------------------------------------------------------------------- /OnlineProcessing/OnlineProcessing-Without-License-Kotlin/app/src/main/java/com/regula/onlineprocessing_without_license_kotlin/util/Constants.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/OnlineProcessing/OnlineProcessing-Without-License-Kotlin/app/src/main/java/com/regula/onlineprocessing_without_license_kotlin/util/Constants.kt -------------------------------------------------------------------------------- /OnlineProcessing/OnlineProcessing-Without-License-Kotlin/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/OnlineProcessing/OnlineProcessing-Without-License-Kotlin/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /OnlineProcessing/OnlineProcessing-Without-License-Kotlin/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/OnlineProcessing/OnlineProcessing-Without-License-Kotlin/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /OnlineProcessing/OnlineProcessing-Without-License-Kotlin/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/OnlineProcessing/OnlineProcessing-Without-License-Kotlin/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /OnlineProcessing/OnlineProcessing-Without-License-Kotlin/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/OnlineProcessing/OnlineProcessing-Without-License-Kotlin/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /OnlineProcessing/OnlineProcessing-Without-License-Kotlin/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/OnlineProcessing/OnlineProcessing-Without-License-Kotlin/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /OnlineProcessing/OnlineProcessing-Without-License-Kotlin/app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/OnlineProcessing/OnlineProcessing-Without-License-Kotlin/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /OnlineProcessing/OnlineProcessing-Without-License-Kotlin/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/OnlineProcessing/OnlineProcessing-Without-License-Kotlin/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /OnlineProcessing/OnlineProcessing-Without-License-Kotlin/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/OnlineProcessing/OnlineProcessing-Without-License-Kotlin/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /OnlineProcessing/OnlineProcessing-Without-License-Kotlin/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/OnlineProcessing/OnlineProcessing-Without-License-Kotlin/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /OnlineProcessing/OnlineProcessing-Without-License-Kotlin/app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/OnlineProcessing/OnlineProcessing-Without-License-Kotlin/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /OnlineProcessing/OnlineProcessing-Without-License-Kotlin/app/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/OnlineProcessing/OnlineProcessing-Without-License-Kotlin/app/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /OnlineProcessing/OnlineProcessing-Without-License-Kotlin/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/OnlineProcessing/OnlineProcessing-Without-License-Kotlin/build.gradle -------------------------------------------------------------------------------- /OnlineProcessing/OnlineProcessing-Without-License-Kotlin/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/OnlineProcessing/OnlineProcessing-Without-License-Kotlin/gradle.properties -------------------------------------------------------------------------------- /OnlineProcessing/OnlineProcessing-Without-License-Kotlin/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/OnlineProcessing/OnlineProcessing-Without-License-Kotlin/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /OnlineProcessing/OnlineProcessing-Without-License-Kotlin/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/OnlineProcessing/OnlineProcessing-Without-License-Kotlin/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /OnlineProcessing/OnlineProcessing-Without-License-Kotlin/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/OnlineProcessing/OnlineProcessing-Without-License-Kotlin/gradlew -------------------------------------------------------------------------------- /OnlineProcessing/OnlineProcessing-Without-License-Kotlin/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/OnlineProcessing/OnlineProcessing-Without-License-Kotlin/gradlew.bat -------------------------------------------------------------------------------- /OnlineProcessing/OnlineProcessing-Without-License-Kotlin/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/OnlineProcessing/OnlineProcessing-Without-License-Kotlin/settings.gradle -------------------------------------------------------------------------------- /OnlineProcessing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/OnlineProcessing/README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/README.md -------------------------------------------------------------------------------- /RfidCertificates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/RfidCertificates/README.md -------------------------------------------------------------------------------- /RfidCertificates/RfidSertificates-Default-Kotlin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/RfidCertificates/RfidSertificates-Default-Kotlin/.gitignore -------------------------------------------------------------------------------- /RfidCertificates/RfidSertificates-Default-Kotlin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/RfidCertificates/RfidSertificates-Default-Kotlin/README.md -------------------------------------------------------------------------------- /RfidCertificates/RfidSertificates-Default-Kotlin/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /RfidCertificates/RfidSertificates-Default-Kotlin/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/RfidCertificates/RfidSertificates-Default-Kotlin/app/build.gradle -------------------------------------------------------------------------------- /RfidCertificates/RfidSertificates-Default-Kotlin/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/RfidCertificates/RfidSertificates-Default-Kotlin/app/proguard-rules.pro -------------------------------------------------------------------------------- /RfidCertificates/RfidSertificates-Default-Kotlin/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/RfidCertificates/RfidSertificates-Default-Kotlin/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /RfidCertificates/RfidSertificates-Default-Kotlin/app/src/main/assets/Regula/certificates/PKDML.000259.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/RfidCertificates/RfidSertificates-Default-Kotlin/app/src/main/assets/Regula/certificates/PKDML.000259.ldif -------------------------------------------------------------------------------- /RfidCertificates/RfidSertificates-Default-Kotlin/app/src/main/assets/Regula/certificates_ta/FRCVCA_CC.cvCert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/RfidCertificates/RfidSertificates-Default-Kotlin/app/src/main/assets/Regula/certificates_ta/FRCVCA_CC.cvCert -------------------------------------------------------------------------------- /RfidCertificates/RfidSertificates-Default-Kotlin/app/src/main/assets/Regula/certificates_ta/FRCVCA_CC.pkcs8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/RfidCertificates/RfidSertificates-Default-Kotlin/app/src/main/assets/Regula/certificates_ta/FRCVCA_CC.pkcs8 -------------------------------------------------------------------------------- /RfidCertificates/RfidSertificates-Default-Kotlin/app/src/main/assets/Regula/certificates_ta/FRDV_CC.cvCert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/RfidCertificates/RfidSertificates-Default-Kotlin/app/src/main/assets/Regula/certificates_ta/FRDV_CC.cvCert -------------------------------------------------------------------------------- /RfidCertificates/RfidSertificates-Default-Kotlin/app/src/main/assets/Regula/certificates_ta/FRDV_CC.pkcs8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/RfidCertificates/RfidSertificates-Default-Kotlin/app/src/main/assets/Regula/certificates_ta/FRDV_CC.pkcs8 -------------------------------------------------------------------------------- /RfidCertificates/RfidSertificates-Default-Kotlin/app/src/main/assets/Regula/certificates_ta/FRIS_CC.cvCert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/RfidCertificates/RfidSertificates-Default-Kotlin/app/src/main/assets/Regula/certificates_ta/FRIS_CC.cvCert -------------------------------------------------------------------------------- /RfidCertificates/RfidSertificates-Default-Kotlin/app/src/main/assets/Regula/certificates_ta/FRIS_CC.pkcs8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/RfidCertificates/RfidSertificates-Default-Kotlin/app/src/main/assets/Regula/certificates_ta/FRIS_CC.pkcs8 -------------------------------------------------------------------------------- /RfidCertificates/RfidSertificates-Default-Kotlin/app/src/main/java/com/regula/certificates_default_kotlin/CertificatesUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/RfidCertificates/RfidSertificates-Default-Kotlin/app/src/main/java/com/regula/certificates_default_kotlin/CertificatesUtil.kt -------------------------------------------------------------------------------- /RfidCertificates/RfidSertificates-Default-Kotlin/app/src/main/java/com/regula/certificates_default_kotlin/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/RfidCertificates/RfidSertificates-Default-Kotlin/app/src/main/java/com/regula/certificates_default_kotlin/MainActivity.kt -------------------------------------------------------------------------------- /RfidCertificates/RfidSertificates-Default-Kotlin/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/RfidCertificates/RfidSertificates-Default-Kotlin/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /RfidCertificates/RfidSertificates-Default-Kotlin/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/RfidCertificates/RfidSertificates-Default-Kotlin/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /RfidCertificates/RfidSertificates-Default-Kotlin/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/RfidCertificates/RfidSertificates-Default-Kotlin/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /RfidCertificates/RfidSertificates-Default-Kotlin/app/src/main/res/layout/simple_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/RfidCertificates/RfidSertificates-Default-Kotlin/app/src/main/res/layout/simple_dialog.xml -------------------------------------------------------------------------------- /RfidCertificates/RfidSertificates-Default-Kotlin/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/RfidCertificates/RfidSertificates-Default-Kotlin/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /RfidCertificates/RfidSertificates-Default-Kotlin/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/RfidCertificates/RfidSertificates-Default-Kotlin/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /RfidCertificates/RfidSertificates-Default-Kotlin/app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/RfidCertificates/RfidSertificates-Default-Kotlin/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /RfidCertificates/RfidSertificates-Default-Kotlin/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/RfidCertificates/RfidSertificates-Default-Kotlin/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /RfidCertificates/RfidSertificates-Default-Kotlin/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/RfidCertificates/RfidSertificates-Default-Kotlin/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /RfidCertificates/RfidSertificates-Default-Kotlin/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/RfidCertificates/RfidSertificates-Default-Kotlin/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /RfidCertificates/RfidSertificates-Default-Kotlin/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/RfidCertificates/RfidSertificates-Default-Kotlin/build.gradle -------------------------------------------------------------------------------- /RfidCertificates/RfidSertificates-Default-Kotlin/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/RfidCertificates/RfidSertificates-Default-Kotlin/gradle.properties -------------------------------------------------------------------------------- /RfidCertificates/RfidSertificates-Default-Kotlin/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/RfidCertificates/RfidSertificates-Default-Kotlin/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /RfidCertificates/RfidSertificates-Default-Kotlin/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/RfidCertificates/RfidSertificates-Default-Kotlin/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /RfidCertificates/RfidSertificates-Default-Kotlin/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/RfidCertificates/RfidSertificates-Default-Kotlin/gradlew -------------------------------------------------------------------------------- /RfidCertificates/RfidSertificates-Default-Kotlin/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/RfidCertificates/RfidSertificates-Default-Kotlin/gradlew.bat -------------------------------------------------------------------------------- /RfidCertificates/RfidSertificates-Default-Kotlin/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/RfidCertificates/RfidSertificates-Default-Kotlin/settings.gradle -------------------------------------------------------------------------------- /RfidCertificates/RfidSertificates-Runtime-Kotlin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/RfidCertificates/RfidSertificates-Runtime-Kotlin/.gitignore -------------------------------------------------------------------------------- /RfidCertificates/RfidSertificates-Runtime-Kotlin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/RfidCertificates/RfidSertificates-Runtime-Kotlin/README.md -------------------------------------------------------------------------------- /RfidCertificates/RfidSertificates-Runtime-Kotlin/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /RfidCertificates/RfidSertificates-Runtime-Kotlin/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/RfidCertificates/RfidSertificates-Runtime-Kotlin/app/build.gradle -------------------------------------------------------------------------------- /RfidCertificates/RfidSertificates-Runtime-Kotlin/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/RfidCertificates/RfidSertificates-Runtime-Kotlin/app/proguard-rules.pro -------------------------------------------------------------------------------- /RfidCertificates/RfidSertificates-Runtime-Kotlin/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/RfidCertificates/RfidSertificates-Runtime-Kotlin/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /RfidCertificates/RfidSertificates-Runtime-Kotlin/app/src/main/assets/Regula/certificates_ta/FRCVCA_CC.cvCert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/RfidCertificates/RfidSertificates-Runtime-Kotlin/app/src/main/assets/Regula/certificates_ta/FRCVCA_CC.cvCert -------------------------------------------------------------------------------- /RfidCertificates/RfidSertificates-Runtime-Kotlin/app/src/main/assets/Regula/certificates_ta/FRCVCA_CC.pkcs8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/RfidCertificates/RfidSertificates-Runtime-Kotlin/app/src/main/assets/Regula/certificates_ta/FRCVCA_CC.pkcs8 -------------------------------------------------------------------------------- /RfidCertificates/RfidSertificates-Runtime-Kotlin/app/src/main/assets/Regula/certificates_ta/FRDV_CC.cvCert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/RfidCertificates/RfidSertificates-Runtime-Kotlin/app/src/main/assets/Regula/certificates_ta/FRDV_CC.cvCert -------------------------------------------------------------------------------- /RfidCertificates/RfidSertificates-Runtime-Kotlin/app/src/main/assets/Regula/certificates_ta/FRDV_CC.pkcs8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/RfidCertificates/RfidSertificates-Runtime-Kotlin/app/src/main/assets/Regula/certificates_ta/FRDV_CC.pkcs8 -------------------------------------------------------------------------------- /RfidCertificates/RfidSertificates-Runtime-Kotlin/app/src/main/assets/Regula/certificates_ta/FRIS_CC.cvCert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/RfidCertificates/RfidSertificates-Runtime-Kotlin/app/src/main/assets/Regula/certificates_ta/FRIS_CC.cvCert -------------------------------------------------------------------------------- /RfidCertificates/RfidSertificates-Runtime-Kotlin/app/src/main/assets/Regula/certificates_ta/FRIS_CC.pkcs8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/RfidCertificates/RfidSertificates-Runtime-Kotlin/app/src/main/assets/Regula/certificates_ta/FRIS_CC.pkcs8 -------------------------------------------------------------------------------- /RfidCertificates/RfidSertificates-Runtime-Kotlin/app/src/main/java/com/regula/rfid_certificates_runtime_kotlin/CertificatesUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/RfidCertificates/RfidSertificates-Runtime-Kotlin/app/src/main/java/com/regula/rfid_certificates_runtime_kotlin/CertificatesUtil.kt -------------------------------------------------------------------------------- /RfidCertificates/RfidSertificates-Runtime-Kotlin/app/src/main/java/com/regula/rfid_certificates_runtime_kotlin/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/RfidCertificates/RfidSertificates-Runtime-Kotlin/app/src/main/java/com/regula/rfid_certificates_runtime_kotlin/MainActivity.kt -------------------------------------------------------------------------------- /RfidCertificates/RfidSertificates-Runtime-Kotlin/app/src/main/java/com/regula/rfid_certificates_runtime_kotlin/RfidExample.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/RfidCertificates/RfidSertificates-Runtime-Kotlin/app/src/main/java/com/regula/rfid_certificates_runtime_kotlin/RfidExample.kt -------------------------------------------------------------------------------- /RfidCertificates/RfidSertificates-Runtime-Kotlin/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/RfidCertificates/RfidSertificates-Runtime-Kotlin/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /RfidCertificates/RfidSertificates-Runtime-Kotlin/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/RfidCertificates/RfidSertificates-Runtime-Kotlin/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /RfidCertificates/RfidSertificates-Runtime-Kotlin/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/RfidCertificates/RfidSertificates-Runtime-Kotlin/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /RfidCertificates/RfidSertificates-Runtime-Kotlin/app/src/main/res/layout/simple_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/RfidCertificates/RfidSertificates-Runtime-Kotlin/app/src/main/res/layout/simple_dialog.xml -------------------------------------------------------------------------------- /RfidCertificates/RfidSertificates-Runtime-Kotlin/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/RfidCertificates/RfidSertificates-Runtime-Kotlin/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /RfidCertificates/RfidSertificates-Runtime-Kotlin/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/RfidCertificates/RfidSertificates-Runtime-Kotlin/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /RfidCertificates/RfidSertificates-Runtime-Kotlin/app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/RfidCertificates/RfidSertificates-Runtime-Kotlin/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /RfidCertificates/RfidSertificates-Runtime-Kotlin/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/RfidCertificates/RfidSertificates-Runtime-Kotlin/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /RfidCertificates/RfidSertificates-Runtime-Kotlin/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/RfidCertificates/RfidSertificates-Runtime-Kotlin/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /RfidCertificates/RfidSertificates-Runtime-Kotlin/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/RfidCertificates/RfidSertificates-Runtime-Kotlin/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /RfidCertificates/RfidSertificates-Runtime-Kotlin/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/RfidCertificates/RfidSertificates-Runtime-Kotlin/build.gradle -------------------------------------------------------------------------------- /RfidCertificates/RfidSertificates-Runtime-Kotlin/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/RfidCertificates/RfidSertificates-Runtime-Kotlin/gradle.properties -------------------------------------------------------------------------------- /RfidCertificates/RfidSertificates-Runtime-Kotlin/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/RfidCertificates/RfidSertificates-Runtime-Kotlin/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /RfidCertificates/RfidSertificates-Runtime-Kotlin/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/RfidCertificates/RfidSertificates-Runtime-Kotlin/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /RfidCertificates/RfidSertificates-Runtime-Kotlin/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/RfidCertificates/RfidSertificates-Runtime-Kotlin/gradlew -------------------------------------------------------------------------------- /RfidCertificates/RfidSertificates-Runtime-Kotlin/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/RfidCertificates/RfidSertificates-Runtime-Kotlin/gradlew.bat -------------------------------------------------------------------------------- /RfidCertificates/RfidSertificates-Runtime-Kotlin/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regulaforensics/DocumentReader-Android/HEAD/RfidCertificates/RfidSertificates-Runtime-Kotlin/settings.gradle --------------------------------------------------------------------------------