@regulaforensics/document-reader 8.3.293-beta → 8.3.295-beta

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -5,7 +5,7 @@ source = File.join(__dir__, 'ios')
5
5
 
6
6
  Pod::Spec.new do |s|
7
7
  s.name = 'RNDocumentReader'
8
- s.version = '8.3.293-beta'
8
+ s.version = '8.3.295-beta'
9
9
  s.summary = package['description']
10
10
  s.license = package['license']
11
11
 
@@ -2,8 +2,8 @@
2
2
 
3
3
  <application
4
4
  android:allowBackup="true"
5
- android:icon="@drawable/ic_launcher"
6
- android:label="DocReader"
5
+ android:icon="@drawable/launcher"
6
+ android:label="Document"
7
7
  android:supportsRtl="true"
8
8
  android:theme="@style/AppTheme"
9
9
  android:usesCleartextTraffic="true">
@@ -0,0 +1,4 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
3
+ <foreground android:drawable="@drawable/ic_launcher_foreground"/>
4
+ </adaptive-icon>
@@ -0,0 +1,4 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
3
+ <foreground android:drawable="@drawable/ic_launcher_foreground"/>
4
+ </adaptive-icon>
@@ -1,5 +1,5 @@
1
1
  ext {
2
- minSdkVersion = 24
2
+ minSdkVersion = 26
3
3
  compileSdkVersion = 35
4
4
  targetSdkVersion = 35
5
5
  androidxActivityVersion = '1.9.2'
@@ -5,7 +5,7 @@
5
5
  <key>CFBundleDevelopmentRegion</key>
6
6
  <string>en</string>
7
7
  <key>CFBundleDisplayName</key>
8
- <string>DocReader</string>
8
+ <string>Document</string>
9
9
  <key>CFBundleExecutable</key>
10
10
  <string>$(EXECUTABLE_NAME)</string>
11
11
  <key>CFBundleIdentifier</key>
@@ -6,7 +6,7 @@
6
6
  "android": "scripts/android.sh"
7
7
  },
8
8
  "dependencies": {
9
- "@regulaforensics/document-reader": "8.3.293-beta",
9
+ "@regulaforensics/document-reader": "8.3.295-beta",
10
10
  "@regulaforensics/document-reader-core-fullauthrfid": "8.2.8-beta",
11
11
  "@regulaforensics/document-reader-btdevice": "8.2.8-beta",
12
12
  "@awesome-cordova-plugins/file": "6.6.0",
@@ -1,7 +1,7 @@
1
1
  <?xml version='1.0' encoding='utf-8'?>
2
2
  <widget android-packageName="com.regula.example.dr.ionic" ios-CFBundleIdentifier="com.regula.example.dr.ionic" version="1.0.0"
3
3
  xmlns:android="http://schemas.android.com/apk/res/android">
4
- <name>DocReader</name>
4
+ <name>Document</name>
5
5
  <icon src="images/icon.png" />
6
6
  <platform name="android">
7
7
  <resource-file src="assets/db.dat" target="app/src/main/assets/Regula/db.dat" />
@@ -18,7 +18,7 @@
18
18
  "@awesome-cordova-plugins/file": "^8.1.0",
19
19
  "@ionic/angular": "^8.7.3",
20
20
  "@ionic/cordova-builders": "^12.3.0",
21
- "@regulaforensics/document-reader": "8.3.293-beta",
21
+ "@regulaforensics/document-reader": "8.3.295-beta",
22
22
  "@regulaforensics/document-reader-btdevice": "8.2.8-beta",
23
23
  "@regulaforensics/document-reader-core-fullauthrfid": "8.2.8-beta",
24
24
  "cordova-android": "^14.0.1",
@@ -2,7 +2,7 @@
2
2
 
3
3
  if [[ $npm_config_o || $npm_config_open ]]; then
4
4
  ionic cordova prepare ios
5
- open platforms/ios/DocReader.xcworkspace
5
+ open platforms/ios/Document.xcworkspace
6
6
  else
7
7
  ionic cordova run ios
8
8
  fi
@@ -3,7 +3,7 @@ import { ExpoConfig, ConfigContext } from 'expo/config'
3
3
  export default ({ config }: ConfigContext): ExpoConfig => ({
4
4
  ...config,
5
5
  slug: 'document-reader',
6
- name: 'DocReader',
6
+ name: 'Document',
7
7
  orientation: 'portrait',
8
8
  icon: './images/icon/icon.png',
9
9
  ios: {
@@ -47,9 +47,7 @@ export default ({ config }: ConfigContext): ExpoConfig => ({
47
47
  { url: 'https://maven.regulaforensics.com/RegulaDocumentReader/Nightly' },
48
48
  { url: 'https://maven.regulaforensics.com/RegulaDocumentReader/Stage' }
49
49
  ]
50
- },
51
- // This fixes a bug in expo v53. https://github.com/expo/expo/issues/36908
52
- ios: { networkInspector: false }
50
+ }
53
51
  }]
54
52
  ]
55
53
  })