Skip to content

Commit 30ec639

Browse files
author
ci-bot
committed
Updated projects
1 parent cfa656c commit 30ec639

24 files changed

Lines changed: 237 additions & 34 deletions

File tree

Advanced/DocumentReader-Swift/DocumentReader-Swift/ResultsViewController/Cells/TextCell.xib

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<document type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="3.0" toolsVersion="22505" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" useSafeAreas="YES" colorMatched="YES">
2+
<document type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="3.0" toolsVersion="32700.99.1234" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" useSafeAreas="YES" colorMatched="YES">
33
<device id="retina6_1" orientation="portrait" appearance="light"/>
44
<dependencies>
55
<deployment identifier="iOS"/>
6-
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="22504"/>
6+
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="22684"/>
77
<capability name="Safe area layout guides" minToolsVersion="9.0"/>
88
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
99
</dependencies>
@@ -69,7 +69,6 @@
6969
<connections>
7070
<outlet property="lcidLabel" destination="t0f-8f-QI3" id="IF2-Ap-CYb"/>
7171
<outlet property="pageIndexLabel" destination="qub-fY-mYb" id="7m7-BQ-mrz"/>
72-
<outlet property="textLabel" destination="Ypm-Ja-g0f" id="q4q-C3-QkU"/>
7372
<outlet property="titleLabel" destination="G9y-0K-dgO" id="fM6-bM-aTS"/>
7473
<outlet property="valueLabel" destination="Ypm-Ja-g0f" id="8vT-f7-c5t"/>
7574
</connections>

Advanced/DocumentReader-Swift/DocumentReader-Swift/ResultsViewController/ResultsViewController.swift

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -88,11 +88,11 @@ class ResultsViewController: UIViewController {
8888
tableView.dataSource = self
8989
tableView.delegate = self
9090
tableView.rowHeight = UITableView.automaticDimension
91-
tableView.register(UINib.init(nibName: kTextCellId, bundle: nil),
91+
tableView.register(UINib(nibName: kTextCellId, bundle: nil),
9292
forCellReuseIdentifier: kTextCellId)
93-
tableView.register(UINib.init(nibName: kImageCellId, bundle: nil),
93+
tableView.register(UINib(nibName: kImageCellId, bundle: nil),
9494
forCellReuseIdentifier: kImageCellId)
95-
tableView.register(UINib.init(nibName: kCheckResultCellId, bundle: nil),
95+
tableView.register(UINib(nibName: kCheckResultCellId, bundle: nil),
9696
forCellReuseIdentifier: kCheckResultCellId)
9797

9898
let statusImageName = results.status.overallStatus == .ok ? "status_ok" : results.status.overallStatus == CheckResult.error ? "status_not_ok" : "status_undefined"
@@ -224,7 +224,7 @@ class ResultsViewController: UIViewController {
224224
if let authenticityResults = results.authenticityResults {
225225
for check in authenticityResults.checks ?? [] {
226226
switch check.type {
227-
case .uvLuminescence, .barcodeFormatCheck:
227+
case .uvLuminescence, .barcodeFormatCheck, .photoEmbedType:
228228
var group = GroupedAttributes(type: "\(check.typeName)", items: [])
229229
var index = 0
230230
for element in check.elements ?? [] {

Advanced/DocumentReader-Swift/Podfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ platform :ios, '11.0'
44
use_frameworks!
55

66
target 'DocumentReader-Swift' do
7-
pod 'DocumentReader', '~> 7.2.0'
8-
pod 'DocumentReaderFullRFID', '~> 7.2.0'
7+
pod 'DocumentReader', '~> 7.3.0'
8+
pod 'DocumentReaderFullRFID', '~> 7.3.0'
99
end
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Regula Document Reader (iOS version)
2+
The sample project for Document Reader advanced functionality demonstration.
3+
Swift implementation.
4+
5+
# Content
6+
* [How to build the demo application](#how-to-build-the-demo-application)
7+
* [Documentation](#documentation)
8+
* [Additional information](#additional-information)
9+
10+
## How to build the demo application
11+
1. Download or clone the current repository using the command `git clone https://github.com/regulaforensics/DocumentReader-Swift.git`.
12+
2. Open the `DocumentReader-Swift` project in an IDE.
13+
3. Run pods `pod install`.
14+
4. Add license and database files to the target:
15+
- visit our [Client Portal](https://client.regulaforensics.com/) to get a trial license (`regula.license` file). The license creation wizard will guide you through the necessary steps.
16+
- copy the license file to the project: `Advanced/DocumentReader-Swift/DocumentReader-Swift/`.
17+
- copy the database file db.dat from [Client Portal](https://client.regulaforensics.com/customer/databases) to the project: `Advanced/DocumentReader-Swift/DocumentReader-Swift/`.
18+
5. Change the application Bundle ID to the one you have specified during the registration at [Client Portal](https://client.regulaforensics.com/).
19+
20+
## Documentation
21+
The documentation on the SDK can be found [here](https://docs.regulaforensics.com/develop/doc-reader-sdk/mobile?utm_source=github).
22+
23+
## Additional information
24+
If you have any technical questions or suggestions, feel free to [contact](mailto:support@regulaforensics.com) us or create an issue [here](https://github.com/regulaforensics/DocumentReader-iOS/issues).

BackendProcessing/Podfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ platform :ios, '11.0'
22
use_frameworks!
33

44
target 'BackendProcessing' do
5-
pod 'DocumentReader', '~> 7.2.0'
6-
pod 'DocumentReaderFullRFID', '~> 7.2.0'
5+
pod 'DocumentReader', '~> 7.3.0'
6+
pod 'DocumentReaderFullRFID', '~> 7.3.0'
77
end

BackendProcessing/README.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Regula Document Reader (iOS version)
2+
The sample project for Document Reader Backend Processing demonstration.
3+
4+
# Content
5+
* [How to build the demo application](#how-to-build-the-demo-application)
6+
* [Documentation](#documentation)
7+
* [Additional information](#additional-information)
8+
9+
## How to build the demo application
10+
1. Download or clone the current repository using the command `git clone https://github.com/regulaforensics/DocumentReader-Swift.git`.
11+
2. Open the `BackendProcessing` project in an IDE.
12+
3. Run pods `pod install`.
13+
4. Add license and database files to the target:
14+
- visit our [Client Portal](https://client.regulaforensics.com/) to get a trial license (`regula.license` file). The license creation wizard will guide you through the necessary steps.
15+
- copy the license file to the project: `BackendProcessing/BackendProcessing/`.
16+
- copy the database file db.dat from [Client Portal](https://client.regulaforensics.com/customer/databases) to the project: `BackendProcessing/BackendProcessing/`.
17+
5. Change the application Bundle ID to the one you have specified during the registration at [Client Portal](https://client.regulaforensics.com/).
18+
19+
## Documentation
20+
The documentation on the SDK can be found [here](https://docs.regulaforensics.com/develop/doc-reader-sdk/mobile?utm_source=github).
21+
22+
## Additional information
23+
If you have any technical questions or suggestions, feel free to [contact](mailto:support@regulaforensics.com) us or create an issue [here](https://github.com/regulaforensics/DocumentReader-iOS/issues).

Basic/DocumentReaderObjectiveC-sample/Podfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
platform :ios, '11.0'
44

55
target 'DocumentReaderFullObjectiveC-sample' do
6-
pod 'DocumentReader', '~> 7.2.0'
7-
pod 'DocumentReaderFullRFID', '~> 7.2.0'
6+
pod 'DocumentReader', '~> 7.3.0'
7+
pod 'DocumentReaderFullRFID', '~> 7.3.0'
88
end
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Regula Document Reader (iOS version)
2+
The sample project for Document Reader basic functionality demonstration.
3+
Objective-C implementation.
4+
5+
# Content
6+
* [How to build the demo application](#how-to-build-the-demo-application)
7+
* [Documentation](#documentation)
8+
* [Additional information](#additional-information)
9+
10+
## How to build the demo application
11+
1. Download or clone the current repository using the command `git clone https://github.com/regulaforensics/DocumentReader-Swift.git`.
12+
2. Open the `DocumentReaderObjectiveC-sample` project in an IDE.
13+
3. Run pods `pod install`.
14+
4. Add license and database files to the target:
15+
- visit our [Client Portal](https://client.regulaforensics.com/) to get a trial license (`regula.license` file). The license creation wizard will guide you through the necessary steps.
16+
- copy the license file to the project: `Basic/DocumentReaderObjectiveC-sample/DocumentReaderObjectiveC-sample/`.
17+
- copy the database file db.dat from [Client Portal](https://client.regulaforensics.com/customer/databases) to the project: `Basic/DocumentReaderObjectiveC-sample/DocumentReaderObjectiveC-sample/`.
18+
5. Change the application Bundle ID to the one you have specified during the registration at [Client Portal](https://client.regulaforensics.com/).
19+
20+
## Documentation
21+
The documentation on the SDK can be found [here](https://docs.regulaforensics.com/develop/doc-reader-sdk/mobile?utm_source=github).
22+
23+
## Additional information
24+
If you have any technical questions or suggestions, feel free to [contact](mailto:support@regulaforensics.com) us or create an issue [here](https://github.com/regulaforensics/DocumentReader-iOS/issues).

Basic/DocumentReaderRFIDSwiftUISample/Podfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ target 'DocumentReaderRFIDSwiftUISample' do
66
use_frameworks!
77

88
# Pods for DocumentReaderSwiftUISample
9-
pod 'DocumentReader', '~> 7.2.0'
10-
pod 'DocumentReaderFullRFID', '~> 7.2.0'
9+
pod 'DocumentReader', '~> 7.3.0'
10+
pod 'DocumentReaderFullRFID', '~> 7.3.0'
1111
end
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Regula Document Reader (iOS version)
2+
The sample project for Document Reader reading RFID chip demonstration.
3+
SwiftUI+Combine implementation.
4+
5+
# Content
6+
* [How to build the demo application](#how-to-build-the-demo-application)
7+
* [Documentation](#documentation)
8+
* [Additional information](#additional-information)
9+
10+
## How to build the demo application
11+
1. Download or clone the current repository using the command `git clone https://github.com/regulaforensics/DocumentReader-Swift.git`.
12+
2. Open the `DocumentReaderRFIDSwiftUISample` project in an IDE.
13+
3. Run pods `pod install`.
14+
4. Add license and database files to the target:
15+
- visit our [Client Portal](https://client.regulaforensics.com/) to get a trial license (`regula.license` file). The license creation wizard will guide you through the necessary steps.
16+
- copy the license file to the project: `Basic/DocumentReaderRFIDSwiftUISample/DocumentReaderRFIDSwiftUISample/`.
17+
- copy the database file db.dat from [Client Portal](https://client.regulaforensics.com/customer/databases) to the project: `Basic/DocumentReaderRFIDSwiftUISample/DocumentReaderRFIDSwiftUISample/`.
18+
5. Change the application Bundle ID to the one you have specified during the registration at [Client Portal](https://client.regulaforensics.com/).
19+
20+
## Documentation
21+
The documentation on the SDK can be found [here](https://docs.regulaforensics.com/develop/doc-reader-sdk/mobile?utm_source=github).
22+
23+
## Additional information
24+
If you have any technical questions or suggestions, feel free to [contact](mailto:support@regulaforensics.com) us or create an issue [here](https://github.com/regulaforensics/DocumentReader-iOS/issues).

0 commit comments

Comments
 (0)