@regulaforensics/idv 3.2.23-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.
- package/README.md +36 -0
- package/RNIDV.podspec +21 -0
- package/android/CVDIDV.kt +48 -0
- package/android/build.gradle +41 -0
- package/android/cordova.gradle +20 -0
- package/android/src/main/java/com/regula/plugin/idv/JSONConstructor.kt +135 -0
- package/android/src/main/java/com/regula/plugin/idv/Main.kt +124 -0
- package/android/src/main/java/com/regula/plugin/idv/RNIDVModule.kt +71 -0
- package/android/src/main/java/com/regula/plugin/idv/Utils.kt +60 -0
- package/examples/capacitor/README.md +15 -0
- package/examples/capacitor/android/app/build.gradle +50 -0
- package/examples/capacitor/android/app/capacitor.build.gradle +22 -0
- package/examples/capacitor/android/app/proguard-rules.pro +21 -0
- package/examples/capacitor/android/app/src/main/AndroidManifest.xml +26 -0
- package/examples/capacitor/android/app/src/main/assets/Regula/.gitkeep +0 -0
- package/examples/capacitor/android/app/src/main/java/com/regula/example/idv/capacitor/MainActivity.java +5 -0
- package/examples/capacitor/android/app/src/main/res/drawable/ic_launcher.png +0 -0
- package/examples/capacitor/android/app/src/main/res/drawable/ic_launcher_foreground.png +0 -0
- package/examples/capacitor/android/app/src/main/res/drawable/ic_launcher_round.png +0 -0
- package/examples/capacitor/android/app/src/main/res/drawable/launcher.xml +4 -0
- package/examples/capacitor/android/app/src/main/res/drawable/launcher_round.xml +4 -0
- package/examples/capacitor/android/app/src/main/res/drawable/splash.png +0 -0
- package/examples/capacitor/android/app/src/main/res/layout/activity_main.xml +12 -0
- package/examples/capacitor/android/app/src/main/res/values/styles.xml +22 -0
- package/examples/capacitor/android/build.gradle +30 -0
- package/examples/capacitor/android/capacitor.settings.gradle +15 -0
- package/examples/capacitor/android/gradle/wrapper/gradle-wrapper.jar +0 -0
- package/examples/capacitor/android/gradle/wrapper/gradle-wrapper.properties +7 -0
- package/examples/capacitor/android/gradle.properties +22 -0
- package/examples/capacitor/android/gradlew +252 -0
- package/examples/capacitor/android/gradlew.bat +94 -0
- package/examples/capacitor/android/settings.gradle +5 -0
- package/examples/capacitor/android/variables.gradle +16 -0
- package/examples/capacitor/index.html +5 -0
- package/examples/capacitor/index.tsx +16 -0
- package/examples/capacitor/ionic.config.json +7 -0
- package/examples/capacitor/ios/App/App/App.entitlements +10 -0
- package/examples/capacitor/ios/App/App/AppDelegate.swift +49 -0
- package/examples/capacitor/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-512@2x.png +0 -0
- package/examples/capacitor/ios/App/App/Assets.xcassets/AppIcon.appiconset/Contents.json +14 -0
- package/examples/capacitor/ios/App/App/Assets.xcassets/Contents.json +6 -0
- package/examples/capacitor/ios/App/App/Assets.xcassets/Splash.imageset/Contents.json +23 -0
- package/examples/capacitor/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732-1.png +0 -0
- package/examples/capacitor/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732-2.png +0 -0
- package/examples/capacitor/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732.png +0 -0
- package/examples/capacitor/ios/App/App/Base.lproj/LaunchScreen.storyboard +32 -0
- package/examples/capacitor/ios/App/App/Base.lproj/Main.storyboard +19 -0
- package/examples/capacitor/ios/App/App/Info.plist +65 -0
- package/examples/capacitor/ios/App/App.xcodeproj/project.pbxproj +414 -0
- package/examples/capacitor/ios/App/App.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
- package/examples/capacitor/ios/App/App.xcworkspace/contents.xcworkspacedata +10 -0
- package/examples/capacitor/ios/App/App.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/examples/capacitor/ios/App/Podfile +26 -0
- package/examples/capacitor/package.json +27 -0
- package/examples/capacitor/public/assets/.gitkeep +0 -0
- package/examples/capacitor/scripts/android.sh +9 -0
- package/examples/capacitor/scripts/ios.sh +8 -0
- package/examples/capacitor/scripts/setup.sh +14 -0
- package/examples/capacitor/src/main.css +148 -0
- package/examples/capacitor/src/main.html +38 -0
- package/examples/capacitor/src/main.tsx +10 -0
- package/examples/capacitor/tsconfig.json +5 -0
- package/examples/capacitor/vite.config.ts +17 -0
- package/examples/ionic/README.md +15 -0
- package/examples/ionic/angular.json +39 -0
- package/examples/ionic/assets/.gitkeep +0 -0
- package/examples/ionic/config.xml +59 -0
- package/examples/ionic/images/icon.png +0 -0
- package/examples/ionic/index.html +19 -0
- package/examples/ionic/index.tsx +28 -0
- package/examples/ionic/ionic.config.json +7 -0
- package/examples/ionic/package.json +46 -0
- package/examples/ionic/scripts/android.sh +8 -0
- package/examples/ionic/scripts/ios.sh +8 -0
- package/examples/ionic/scripts/setup.sh +8 -0
- package/examples/ionic/src/main.css +148 -0
- package/examples/ionic/src/main.html +38 -0
- package/examples/ionic/src/main.tsx +10 -0
- package/examples/ionic/tsconfig.json +14 -0
- package/examples/react_native/README.md +15 -0
- package/examples/react_native/app.config.ts +46 -0
- package/examples/react_native/assets/.gitkeep +0 -0
- package/examples/react_native/images/icon.png +0 -0
- package/examples/react_native/index.html +11 -0
- package/examples/react_native/index.tsx +63 -0
- package/examples/react_native/metro.config.js +7 -0
- package/examples/react_native/package.json +29 -0
- package/examples/react_native/scripts/android.sh +13 -0
- package/examples/react_native/scripts/ios.sh +12 -0
- package/examples/react_native/scripts/setup.sh +9 -0
- package/examples/react_native/src/main.css +148 -0
- package/examples/react_native/src/main.html +38 -0
- package/examples/react_native/src/main.tsx +10 -0
- package/ios/CVDIDV.swift +72 -0
- package/ios/FlutterIDVPlugin.swift +72 -0
- package/ios/JSONConstructor.swift +134 -0
- package/ios/Main.swift +89 -0
- package/ios/RNIDV.swift +72 -0
- package/ios/Utils.swift +56 -0
- package/package.json +38 -0
- package/plugin.xml +45 -0
- package/test/json.tsx +0 -0
- package/test/package-lock.json +584 -0
- package/test/package.json +9 -0
- package/test/test.tsx +3 -0
- package/test/utils.tsx +38 -0
- package/www/capacitor/index.js +6 -0
- package/www/capacitor/internal/bridge.js +19 -0
- package/www/capacitor/internal/cordova.js +17 -0
- package/www/cordova.js +150 -0
- package/www/react-native/index.js +6 -0
- package/www/react-native/internal/bridge.js +19 -0
- package/www/types/index.d.ts +12 -0
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
{
|
|
2
|
+
"images" : [
|
|
3
|
+
{
|
|
4
|
+
"idiom" : "universal",
|
|
5
|
+
"filename" : "splash-2732x2732-2.png",
|
|
6
|
+
"scale" : "1x"
|
|
7
|
+
},
|
|
8
|
+
{
|
|
9
|
+
"idiom" : "universal",
|
|
10
|
+
"filename" : "splash-2732x2732-1.png",
|
|
11
|
+
"scale" : "2x"
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
"idiom" : "universal",
|
|
15
|
+
"filename" : "splash-2732x2732.png",
|
|
16
|
+
"scale" : "3x"
|
|
17
|
+
}
|
|
18
|
+
],
|
|
19
|
+
"info" : {
|
|
20
|
+
"version" : 1,
|
|
21
|
+
"author" : "xcode"
|
|
22
|
+
}
|
|
23
|
+
}
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="17132" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" launchScreen="YES" useTraitCollections="YES" useSafeAreas="YES" colorMatched="YES" initialViewController="01J-lp-oVM">
|
|
3
|
+
<device id="retina4_7" orientation="portrait" appearance="light"/>
|
|
4
|
+
<dependencies>
|
|
5
|
+
<deployment identifier="iOS"/>
|
|
6
|
+
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="17105"/>
|
|
7
|
+
<capability name="System colors in document resources" minToolsVersion="11.0"/>
|
|
8
|
+
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
|
|
9
|
+
</dependencies>
|
|
10
|
+
<scenes>
|
|
11
|
+
<!--View Controller-->
|
|
12
|
+
<scene sceneID="EHf-IW-A2E">
|
|
13
|
+
<objects>
|
|
14
|
+
<viewController id="01J-lp-oVM" sceneMemberID="viewController">
|
|
15
|
+
<imageView key="view" userInteractionEnabled="NO" contentMode="scaleAspectFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="Splash" id="snD-IY-ifK">
|
|
16
|
+
<rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
|
|
17
|
+
<autoresizingMask key="autoresizingMask"/>
|
|
18
|
+
<color key="backgroundColor" systemColor="systemBackgroundColor"/>
|
|
19
|
+
</imageView>
|
|
20
|
+
</viewController>
|
|
21
|
+
<placeholder placeholderIdentifier="IBFirstResponder" id="iYj-Kq-Ea1" userLabel="First Responder" sceneMemberID="firstResponder"/>
|
|
22
|
+
</objects>
|
|
23
|
+
<point key="canvasLocation" x="53" y="375"/>
|
|
24
|
+
</scene>
|
|
25
|
+
</scenes>
|
|
26
|
+
<resources>
|
|
27
|
+
<image name="Splash" width="1366" height="1366"/>
|
|
28
|
+
<systemColor name="systemBackgroundColor">
|
|
29
|
+
<color white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
|
|
30
|
+
</systemColor>
|
|
31
|
+
</resources>
|
|
32
|
+
</document>
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="14111" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" colorMatched="YES" initialViewController="BYZ-38-t0r">
|
|
3
|
+
<device id="retina4_7" orientation="portrait">
|
|
4
|
+
<adaptation id="fullscreen"/>
|
|
5
|
+
</device>
|
|
6
|
+
<dependencies>
|
|
7
|
+
<deployment identifier="iOS"/>
|
|
8
|
+
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="14088"/>
|
|
9
|
+
</dependencies>
|
|
10
|
+
<scenes>
|
|
11
|
+
<!--Bridge View Controller-->
|
|
12
|
+
<scene sceneID="tne-QT-ifu">
|
|
13
|
+
<objects>
|
|
14
|
+
<viewController id="BYZ-38-t0r" customClass="CAPBridgeViewController" customModule="Capacitor" sceneMemberID="viewController"/>
|
|
15
|
+
<placeholder placeholderIdentifier="IBFirstResponder" id="dkx-z0-nzr" sceneMemberID="firstResponder"/>
|
|
16
|
+
</objects>
|
|
17
|
+
</scene>
|
|
18
|
+
</scenes>
|
|
19
|
+
</document>
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
3
|
+
<plist version="1.0">
|
|
4
|
+
<dict>
|
|
5
|
+
<key>CFBundleDevelopmentRegion</key>
|
|
6
|
+
<string>en</string>
|
|
7
|
+
<key>CFBundleDisplayName</key>
|
|
8
|
+
<string>IDV</string>
|
|
9
|
+
<key>CFBundleExecutable</key>
|
|
10
|
+
<string>$(EXECUTABLE_NAME)</string>
|
|
11
|
+
<key>CFBundleIdentifier</key>
|
|
12
|
+
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
|
|
13
|
+
<key>CFBundleInfoDictionaryVersion</key>
|
|
14
|
+
<string>6.0</string>
|
|
15
|
+
<key>CFBundleName</key>
|
|
16
|
+
<string>$(PRODUCT_NAME)</string>
|
|
17
|
+
<key>CFBundlePackageType</key>
|
|
18
|
+
<string>APPL</string>
|
|
19
|
+
<key>CFBundleShortVersionString</key>
|
|
20
|
+
<string>$(MARKETING_VERSION)</string>
|
|
21
|
+
<key>CFBundleVersion</key>
|
|
22
|
+
<string>$(CURRENT_PROJECT_VERSION)</string>
|
|
23
|
+
<key>LSRequiresIPhoneOS</key>
|
|
24
|
+
<true/>
|
|
25
|
+
<key>NFCReaderUsageDescription</key>
|
|
26
|
+
<string>To use NFC</string>
|
|
27
|
+
<key>NSAppTransportSecurity</key>
|
|
28
|
+
<dict>
|
|
29
|
+
<key>NSAllowsArbitraryLoads</key>
|
|
30
|
+
<true/>
|
|
31
|
+
</dict>
|
|
32
|
+
<key>NSCameraUsageDescription</key>
|
|
33
|
+
<string></string>
|
|
34
|
+
<key>NSPhotoLibraryUsageDescription</key>
|
|
35
|
+
<string></string>
|
|
36
|
+
<key>UILaunchStoryboardName</key>
|
|
37
|
+
<string>LaunchScreen</string>
|
|
38
|
+
<key>UIMainStoryboardFile</key>
|
|
39
|
+
<string>Main</string>
|
|
40
|
+
<key>UIRequiredDeviceCapabilities</key>
|
|
41
|
+
<array>
|
|
42
|
+
<string>armv7</string>
|
|
43
|
+
</array>
|
|
44
|
+
<key>UISupportedInterfaceOrientations</key>
|
|
45
|
+
<array>
|
|
46
|
+
<string>UIInterfaceOrientationPortrait</string>
|
|
47
|
+
</array>
|
|
48
|
+
<key>UISupportedInterfaceOrientations~ipad</key>
|
|
49
|
+
<array>
|
|
50
|
+
<string>UIInterfaceOrientationPortrait</string>
|
|
51
|
+
</array>
|
|
52
|
+
<key>UIViewControllerBasedStatusBarAppearance</key>
|
|
53
|
+
<true/>
|
|
54
|
+
<key>com.apple.developer.nfc.readersession.iso7816.select-identifiers</key>
|
|
55
|
+
<array>
|
|
56
|
+
<string>A0000002471001</string>
|
|
57
|
+
<string>E80704007F00070302</string>
|
|
58
|
+
<string>A000000167455349474E</string>
|
|
59
|
+
<string>A0000002480100</string>
|
|
60
|
+
<string>A0000002480200</string>
|
|
61
|
+
<string>A0000002480300</string>
|
|
62
|
+
<string>A00000045645444C2D3031</string>
|
|
63
|
+
</array>
|
|
64
|
+
</dict>
|
|
65
|
+
</plist>
|
|
@@ -0,0 +1,414 @@
|
|
|
1
|
+
// !$*UTF8*$!
|
|
2
|
+
{
|
|
3
|
+
archiveVersion = 1;
|
|
4
|
+
classes = {
|
|
5
|
+
};
|
|
6
|
+
objectVersion = 48;
|
|
7
|
+
objects = {
|
|
8
|
+
|
|
9
|
+
/* Begin PBXBuildFile section */
|
|
10
|
+
2FAD9763203C412B000D30F8 /* config.xml in Resources */ = {isa = PBXBuildFile; fileRef = 2FAD9762203C412B000D30F8 /* config.xml */; };
|
|
11
|
+
50379B232058CBB4000EE86E /* capacitor.config.json in Resources */ = {isa = PBXBuildFile; fileRef = 50379B222058CBB4000EE86E /* capacitor.config.json */; };
|
|
12
|
+
504EC3081FED79650016851F /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 504EC3071FED79650016851F /* AppDelegate.swift */; };
|
|
13
|
+
504EC30D1FED79650016851F /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 504EC30B1FED79650016851F /* Main.storyboard */; };
|
|
14
|
+
504EC30F1FED79650016851F /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 504EC30E1FED79650016851F /* Assets.xcassets */; };
|
|
15
|
+
504EC3121FED79650016851F /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 504EC3101FED79650016851F /* LaunchScreen.storyboard */; };
|
|
16
|
+
50B271D11FEDC1A000F3C39B /* public in Resources */ = {isa = PBXBuildFile; fileRef = 50B271D01FEDC1A000F3C39B /* public */; };
|
|
17
|
+
A084ECDBA7D38E1E42DFC39D /* Pods_App.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AF277DCFFFF123FFC6DF26C7 /* Pods_App.framework */; };
|
|
18
|
+
C3C12F0D2DEDD3AA0068B75D /* db.dat in Resources */ = {isa = PBXBuildFile; fileRef = C3C12F0C2DEDD3AA0068B75D /* db.dat */; };
|
|
19
|
+
/* End PBXBuildFile section */
|
|
20
|
+
|
|
21
|
+
/* Begin PBXFileReference section */
|
|
22
|
+
2FAD9762203C412B000D30F8 /* config.xml */ = {isa = PBXFileReference; lastKnownFileType = text.xml; path = config.xml; sourceTree = "<group>"; };
|
|
23
|
+
34ADEF8A2B6C25C900B38C44 /* App.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = App.entitlements; sourceTree = "<group>"; };
|
|
24
|
+
50379B222058CBB4000EE86E /* capacitor.config.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = capacitor.config.json; sourceTree = "<group>"; };
|
|
25
|
+
504EC3041FED79650016851F /* App.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = App.app; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
26
|
+
504EC3071FED79650016851F /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
|
|
27
|
+
504EC30C1FED79650016851F /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
|
|
28
|
+
504EC30E1FED79650016851F /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
|
|
29
|
+
504EC3111FED79650016851F /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
|
|
30
|
+
504EC3131FED79650016851F /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
|
|
31
|
+
50B271D01FEDC1A000F3C39B /* public */ = {isa = PBXFileReference; lastKnownFileType = folder; path = public; sourceTree = "<group>"; };
|
|
32
|
+
AF277DCFFFF123FFC6DF26C7 /* Pods_App.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_App.framework; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
33
|
+
AF51FD2D460BCFE21FA515B2 /* Pods-App.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-App.release.xcconfig"; path = "Pods/Target Support Files/Pods-App/Pods-App.release.xcconfig"; sourceTree = "<group>"; };
|
|
34
|
+
C3C12F0C2DEDD3AA0068B75D /* db.dat */ = {isa = PBXFileReference; lastKnownFileType = file; path = db.dat; sourceTree = "<group>"; };
|
|
35
|
+
FC68EB0AF532CFC21C3344DD /* Pods-App.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-App.debug.xcconfig"; path = "Pods/Target Support Files/Pods-App/Pods-App.debug.xcconfig"; sourceTree = "<group>"; };
|
|
36
|
+
/* End PBXFileReference section */
|
|
37
|
+
|
|
38
|
+
/* Begin PBXFrameworksBuildPhase section */
|
|
39
|
+
504EC3011FED79650016851F /* Frameworks */ = {
|
|
40
|
+
isa = PBXFrameworksBuildPhase;
|
|
41
|
+
buildActionMask = 2147483647;
|
|
42
|
+
files = (
|
|
43
|
+
A084ECDBA7D38E1E42DFC39D /* Pods_App.framework in Frameworks */,
|
|
44
|
+
);
|
|
45
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
46
|
+
};
|
|
47
|
+
/* End PBXFrameworksBuildPhase section */
|
|
48
|
+
|
|
49
|
+
/* Begin PBXGroup section */
|
|
50
|
+
27E2DDA53C4D2A4D1A88CE4A /* Frameworks */ = {
|
|
51
|
+
isa = PBXGroup;
|
|
52
|
+
children = (
|
|
53
|
+
AF277DCFFFF123FFC6DF26C7 /* Pods_App.framework */,
|
|
54
|
+
);
|
|
55
|
+
name = Frameworks;
|
|
56
|
+
sourceTree = "<group>";
|
|
57
|
+
};
|
|
58
|
+
504EC2FB1FED79650016851F = {
|
|
59
|
+
isa = PBXGroup;
|
|
60
|
+
children = (
|
|
61
|
+
504EC3061FED79650016851F /* App */,
|
|
62
|
+
504EC3051FED79650016851F /* Products */,
|
|
63
|
+
7F8756D8B27F46E3366F6CEA /* Pods */,
|
|
64
|
+
27E2DDA53C4D2A4D1A88CE4A /* Frameworks */,
|
|
65
|
+
);
|
|
66
|
+
sourceTree = "<group>";
|
|
67
|
+
};
|
|
68
|
+
504EC3051FED79650016851F /* Products */ = {
|
|
69
|
+
isa = PBXGroup;
|
|
70
|
+
children = (
|
|
71
|
+
504EC3041FED79650016851F /* App.app */,
|
|
72
|
+
);
|
|
73
|
+
name = Products;
|
|
74
|
+
sourceTree = "<group>";
|
|
75
|
+
};
|
|
76
|
+
504EC3061FED79650016851F /* App */ = {
|
|
77
|
+
isa = PBXGroup;
|
|
78
|
+
children = (
|
|
79
|
+
34ADEF8A2B6C25C900B38C44 /* App.entitlements */,
|
|
80
|
+
50379B222058CBB4000EE86E /* capacitor.config.json */,
|
|
81
|
+
504EC3071FED79650016851F /* AppDelegate.swift */,
|
|
82
|
+
504EC30B1FED79650016851F /* Main.storyboard */,
|
|
83
|
+
504EC30E1FED79650016851F /* Assets.xcassets */,
|
|
84
|
+
504EC3101FED79650016851F /* LaunchScreen.storyboard */,
|
|
85
|
+
504EC3131FED79650016851F /* Info.plist */,
|
|
86
|
+
2FAD9762203C412B000D30F8 /* config.xml */,
|
|
87
|
+
50B271D01FEDC1A000F3C39B /* public */,
|
|
88
|
+
C3C12F0C2DEDD3AA0068B75D /* db.dat */,
|
|
89
|
+
);
|
|
90
|
+
path = App;
|
|
91
|
+
sourceTree = "<group>";
|
|
92
|
+
};
|
|
93
|
+
7F8756D8B27F46E3366F6CEA /* Pods */ = {
|
|
94
|
+
isa = PBXGroup;
|
|
95
|
+
children = (
|
|
96
|
+
FC68EB0AF532CFC21C3344DD /* Pods-App.debug.xcconfig */,
|
|
97
|
+
AF51FD2D460BCFE21FA515B2 /* Pods-App.release.xcconfig */,
|
|
98
|
+
);
|
|
99
|
+
name = Pods;
|
|
100
|
+
sourceTree = "<group>";
|
|
101
|
+
};
|
|
102
|
+
/* End PBXGroup section */
|
|
103
|
+
|
|
104
|
+
/* Begin PBXNativeTarget section */
|
|
105
|
+
504EC3031FED79650016851F /* App */ = {
|
|
106
|
+
isa = PBXNativeTarget;
|
|
107
|
+
buildConfigurationList = 504EC3161FED79650016851F /* Build configuration list for PBXNativeTarget "App" */;
|
|
108
|
+
buildPhases = (
|
|
109
|
+
6634F4EFEBD30273BCE97C65 /* [CP] Check Pods Manifest.lock */,
|
|
110
|
+
504EC3001FED79650016851F /* Sources */,
|
|
111
|
+
504EC3011FED79650016851F /* Frameworks */,
|
|
112
|
+
504EC3021FED79650016851F /* Resources */,
|
|
113
|
+
9592DBEFFC6D2A0C8D5DEB22 /* [CP] Embed Pods Frameworks */,
|
|
114
|
+
);
|
|
115
|
+
buildRules = (
|
|
116
|
+
);
|
|
117
|
+
dependencies = (
|
|
118
|
+
);
|
|
119
|
+
name = App;
|
|
120
|
+
productName = App;
|
|
121
|
+
productReference = 504EC3041FED79650016851F /* App.app */;
|
|
122
|
+
productType = "com.apple.product-type.application";
|
|
123
|
+
};
|
|
124
|
+
/* End PBXNativeTarget section */
|
|
125
|
+
|
|
126
|
+
/* Begin PBXProject section */
|
|
127
|
+
504EC2FC1FED79650016851F /* Project object */ = {
|
|
128
|
+
isa = PBXProject;
|
|
129
|
+
attributes = {
|
|
130
|
+
LastSwiftUpdateCheck = 0920;
|
|
131
|
+
LastUpgradeCheck = 0920;
|
|
132
|
+
TargetAttributes = {
|
|
133
|
+
504EC3031FED79650016851F = {
|
|
134
|
+
CreatedOnToolsVersion = 9.2;
|
|
135
|
+
LastSwiftMigration = 1100;
|
|
136
|
+
ProvisioningStyle = Automatic;
|
|
137
|
+
};
|
|
138
|
+
};
|
|
139
|
+
};
|
|
140
|
+
buildConfigurationList = 504EC2FF1FED79650016851F /* Build configuration list for PBXProject "App" */;
|
|
141
|
+
compatibilityVersion = "Xcode 8.0";
|
|
142
|
+
developmentRegion = en;
|
|
143
|
+
hasScannedForEncodings = 0;
|
|
144
|
+
knownRegions = (
|
|
145
|
+
en,
|
|
146
|
+
Base,
|
|
147
|
+
);
|
|
148
|
+
mainGroup = 504EC2FB1FED79650016851F;
|
|
149
|
+
productRefGroup = 504EC3051FED79650016851F /* Products */;
|
|
150
|
+
projectDirPath = "";
|
|
151
|
+
projectRoot = "";
|
|
152
|
+
targets = (
|
|
153
|
+
504EC3031FED79650016851F /* App */,
|
|
154
|
+
);
|
|
155
|
+
};
|
|
156
|
+
/* End PBXProject section */
|
|
157
|
+
|
|
158
|
+
/* Begin PBXResourcesBuildPhase section */
|
|
159
|
+
504EC3021FED79650016851F /* Resources */ = {
|
|
160
|
+
isa = PBXResourcesBuildPhase;
|
|
161
|
+
buildActionMask = 2147483647;
|
|
162
|
+
files = (
|
|
163
|
+
504EC3121FED79650016851F /* LaunchScreen.storyboard in Resources */,
|
|
164
|
+
50B271D11FEDC1A000F3C39B /* public in Resources */,
|
|
165
|
+
504EC30F1FED79650016851F /* Assets.xcassets in Resources */,
|
|
166
|
+
50379B232058CBB4000EE86E /* capacitor.config.json in Resources */,
|
|
167
|
+
504EC30D1FED79650016851F /* Main.storyboard in Resources */,
|
|
168
|
+
2FAD9763203C412B000D30F8 /* config.xml in Resources */,
|
|
169
|
+
C3C12F0D2DEDD3AA0068B75D /* db.dat in Resources */,
|
|
170
|
+
);
|
|
171
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
172
|
+
};
|
|
173
|
+
/* End PBXResourcesBuildPhase section */
|
|
174
|
+
|
|
175
|
+
/* Begin PBXShellScriptBuildPhase section */
|
|
176
|
+
6634F4EFEBD30273BCE97C65 /* [CP] Check Pods Manifest.lock */ = {
|
|
177
|
+
isa = PBXShellScriptBuildPhase;
|
|
178
|
+
buildActionMask = 2147483647;
|
|
179
|
+
files = (
|
|
180
|
+
);
|
|
181
|
+
inputPaths = (
|
|
182
|
+
"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
|
|
183
|
+
"${PODS_ROOT}/Manifest.lock",
|
|
184
|
+
);
|
|
185
|
+
name = "[CP] Check Pods Manifest.lock";
|
|
186
|
+
outputPaths = (
|
|
187
|
+
"$(DERIVED_FILE_DIR)/Pods-App-checkManifestLockResult.txt",
|
|
188
|
+
);
|
|
189
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
190
|
+
shellPath = /bin/sh;
|
|
191
|
+
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
|
|
192
|
+
showEnvVarsInLog = 0;
|
|
193
|
+
};
|
|
194
|
+
9592DBEFFC6D2A0C8D5DEB22 /* [CP] Embed Pods Frameworks */ = {
|
|
195
|
+
isa = PBXShellScriptBuildPhase;
|
|
196
|
+
buildActionMask = 2147483647;
|
|
197
|
+
files = (
|
|
198
|
+
);
|
|
199
|
+
inputPaths = (
|
|
200
|
+
);
|
|
201
|
+
name = "[CP] Embed Pods Frameworks";
|
|
202
|
+
outputPaths = (
|
|
203
|
+
);
|
|
204
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
205
|
+
shellPath = /bin/sh;
|
|
206
|
+
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-App/Pods-App-frameworks.sh\"\n";
|
|
207
|
+
showEnvVarsInLog = 0;
|
|
208
|
+
};
|
|
209
|
+
/* End PBXShellScriptBuildPhase section */
|
|
210
|
+
|
|
211
|
+
/* Begin PBXSourcesBuildPhase section */
|
|
212
|
+
504EC3001FED79650016851F /* Sources */ = {
|
|
213
|
+
isa = PBXSourcesBuildPhase;
|
|
214
|
+
buildActionMask = 2147483647;
|
|
215
|
+
files = (
|
|
216
|
+
504EC3081FED79650016851F /* AppDelegate.swift in Sources */,
|
|
217
|
+
);
|
|
218
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
219
|
+
};
|
|
220
|
+
/* End PBXSourcesBuildPhase section */
|
|
221
|
+
|
|
222
|
+
/* Begin PBXVariantGroup section */
|
|
223
|
+
504EC30B1FED79650016851F /* Main.storyboard */ = {
|
|
224
|
+
isa = PBXVariantGroup;
|
|
225
|
+
children = (
|
|
226
|
+
504EC30C1FED79650016851F /* Base */,
|
|
227
|
+
);
|
|
228
|
+
name = Main.storyboard;
|
|
229
|
+
sourceTree = "<group>";
|
|
230
|
+
};
|
|
231
|
+
504EC3101FED79650016851F /* LaunchScreen.storyboard */ = {
|
|
232
|
+
isa = PBXVariantGroup;
|
|
233
|
+
children = (
|
|
234
|
+
504EC3111FED79650016851F /* Base */,
|
|
235
|
+
);
|
|
236
|
+
name = LaunchScreen.storyboard;
|
|
237
|
+
sourceTree = "<group>";
|
|
238
|
+
};
|
|
239
|
+
/* End PBXVariantGroup section */
|
|
240
|
+
|
|
241
|
+
/* Begin XCBuildConfiguration section */
|
|
242
|
+
504EC3141FED79650016851F /* Debug */ = {
|
|
243
|
+
isa = XCBuildConfiguration;
|
|
244
|
+
buildSettings = {
|
|
245
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
246
|
+
CLANG_ANALYZER_NONNULL = YES;
|
|
247
|
+
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
|
|
248
|
+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
|
|
249
|
+
CLANG_CXX_LIBRARY = "libc++";
|
|
250
|
+
CLANG_ENABLE_MODULES = YES;
|
|
251
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
|
252
|
+
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
|
253
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
|
254
|
+
CLANG_WARN_COMMA = YES;
|
|
255
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
|
256
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
|
257
|
+
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
|
|
258
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
|
259
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
|
260
|
+
CLANG_WARN_INFINITE_RECURSION = YES;
|
|
261
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
|
262
|
+
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
|
263
|
+
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
|
264
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
265
|
+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
|
266
|
+
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
|
267
|
+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
|
268
|
+
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
|
|
269
|
+
CLANG_WARN_UNREACHABLE_CODE = YES;
|
|
270
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
271
|
+
CODE_SIGN_IDENTITY = "iPhone Developer";
|
|
272
|
+
COPY_PHASE_STRIP = NO;
|
|
273
|
+
DEBUG_INFORMATION_FORMAT = dwarf;
|
|
274
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
275
|
+
ENABLE_TESTABILITY = YES;
|
|
276
|
+
GCC_C_LANGUAGE_STANDARD = gnu11;
|
|
277
|
+
GCC_DYNAMIC_NO_PIC = NO;
|
|
278
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
|
279
|
+
GCC_OPTIMIZATION_LEVEL = 0;
|
|
280
|
+
GCC_PREPROCESSOR_DEFINITIONS = (
|
|
281
|
+
"DEBUG=1",
|
|
282
|
+
"$(inherited)",
|
|
283
|
+
);
|
|
284
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
285
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
|
286
|
+
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
|
287
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
288
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
289
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
290
|
+
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
|
|
291
|
+
MTL_ENABLE_DEBUG_INFO = YES;
|
|
292
|
+
ONLY_ACTIVE_ARCH = YES;
|
|
293
|
+
SDKROOT = iphoneos;
|
|
294
|
+
SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
|
|
295
|
+
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
|
|
296
|
+
};
|
|
297
|
+
name = Debug;
|
|
298
|
+
};
|
|
299
|
+
504EC3151FED79650016851F /* Release */ = {
|
|
300
|
+
isa = XCBuildConfiguration;
|
|
301
|
+
buildSettings = {
|
|
302
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
303
|
+
CLANG_ANALYZER_NONNULL = YES;
|
|
304
|
+
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
|
|
305
|
+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
|
|
306
|
+
CLANG_CXX_LIBRARY = "libc++";
|
|
307
|
+
CLANG_ENABLE_MODULES = YES;
|
|
308
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
|
309
|
+
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
|
310
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
|
311
|
+
CLANG_WARN_COMMA = YES;
|
|
312
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
|
313
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
|
314
|
+
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
|
|
315
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
|
316
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
|
317
|
+
CLANG_WARN_INFINITE_RECURSION = YES;
|
|
318
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
|
319
|
+
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
|
320
|
+
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
|
321
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
322
|
+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
|
323
|
+
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
|
324
|
+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
|
325
|
+
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
|
|
326
|
+
CLANG_WARN_UNREACHABLE_CODE = YES;
|
|
327
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
328
|
+
CODE_SIGN_IDENTITY = "iPhone Developer";
|
|
329
|
+
COPY_PHASE_STRIP = NO;
|
|
330
|
+
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
|
331
|
+
ENABLE_NS_ASSERTIONS = NO;
|
|
332
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
333
|
+
GCC_C_LANGUAGE_STANDARD = gnu11;
|
|
334
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
|
335
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
336
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
|
337
|
+
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
|
338
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
339
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
340
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
341
|
+
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
|
|
342
|
+
MTL_ENABLE_DEBUG_INFO = NO;
|
|
343
|
+
SDKROOT = iphoneos;
|
|
344
|
+
SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
|
|
345
|
+
VALIDATE_PRODUCT = YES;
|
|
346
|
+
};
|
|
347
|
+
name = Release;
|
|
348
|
+
};
|
|
349
|
+
504EC3171FED79650016851F /* Debug */ = {
|
|
350
|
+
isa = XCBuildConfiguration;
|
|
351
|
+
baseConfigurationReference = FC68EB0AF532CFC21C3344DD /* Pods-App.debug.xcconfig */;
|
|
352
|
+
buildSettings = {
|
|
353
|
+
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
|
354
|
+
CODE_SIGN_ENTITLEMENTS = App/App.entitlements;
|
|
355
|
+
CODE_SIGN_STYLE = Automatic;
|
|
356
|
+
CURRENT_PROJECT_VERSION = 1;
|
|
357
|
+
INFOPLIST_FILE = App/Info.plist;
|
|
358
|
+
IPHONEOS_DEPLOYMENT_TARGET = 15.6;
|
|
359
|
+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
|
|
360
|
+
MARKETING_VERSION = 1.0;
|
|
361
|
+
OTHER_SWIFT_FLAGS = "$(inherited) \"-D\" \"COCOAPODS\" \"-DDEBUG\"";
|
|
362
|
+
PRODUCT_BUNDLE_IDENTIFIER = com.regula.example.idv.capacitor;
|
|
363
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
364
|
+
SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
|
|
365
|
+
SWIFT_VERSION = 5.0;
|
|
366
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
|
367
|
+
};
|
|
368
|
+
name = Debug;
|
|
369
|
+
};
|
|
370
|
+
504EC3181FED79650016851F /* Release */ = {
|
|
371
|
+
isa = XCBuildConfiguration;
|
|
372
|
+
baseConfigurationReference = AF51FD2D460BCFE21FA515B2 /* Pods-App.release.xcconfig */;
|
|
373
|
+
buildSettings = {
|
|
374
|
+
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
|
375
|
+
CODE_SIGN_ENTITLEMENTS = App/App.entitlements;
|
|
376
|
+
CODE_SIGN_STYLE = Automatic;
|
|
377
|
+
CURRENT_PROJECT_VERSION = 1;
|
|
378
|
+
INFOPLIST_FILE = App/Info.plist;
|
|
379
|
+
IPHONEOS_DEPLOYMENT_TARGET = 15.6;
|
|
380
|
+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
|
|
381
|
+
MARKETING_VERSION = 1.0;
|
|
382
|
+
PRODUCT_BUNDLE_IDENTIFIER = com.regula.example.idv.capacitor;
|
|
383
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
384
|
+
SWIFT_ACTIVE_COMPILATION_CONDITIONS = "";
|
|
385
|
+
SWIFT_VERSION = 5.0;
|
|
386
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
|
387
|
+
};
|
|
388
|
+
name = Release;
|
|
389
|
+
};
|
|
390
|
+
/* End XCBuildConfiguration section */
|
|
391
|
+
|
|
392
|
+
/* Begin XCConfigurationList section */
|
|
393
|
+
504EC2FF1FED79650016851F /* Build configuration list for PBXProject "App" */ = {
|
|
394
|
+
isa = XCConfigurationList;
|
|
395
|
+
buildConfigurations = (
|
|
396
|
+
504EC3141FED79650016851F /* Debug */,
|
|
397
|
+
504EC3151FED79650016851F /* Release */,
|
|
398
|
+
);
|
|
399
|
+
defaultConfigurationIsVisible = 0;
|
|
400
|
+
defaultConfigurationName = Release;
|
|
401
|
+
};
|
|
402
|
+
504EC3161FED79650016851F /* Build configuration list for PBXNativeTarget "App" */ = {
|
|
403
|
+
isa = XCConfigurationList;
|
|
404
|
+
buildConfigurations = (
|
|
405
|
+
504EC3171FED79650016851F /* Debug */,
|
|
406
|
+
504EC3181FED79650016851F /* Release */,
|
|
407
|
+
);
|
|
408
|
+
defaultConfigurationIsVisible = 0;
|
|
409
|
+
defaultConfigurationName = Release;
|
|
410
|
+
};
|
|
411
|
+
/* End XCConfigurationList section */
|
|
412
|
+
};
|
|
413
|
+
rootObject = 504EC2FC1FED79650016851F /* Project object */;
|
|
414
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
source "https://github.com/CocoaPods/Specs.git"
|
|
2
|
+
|
|
3
|
+
require_relative '../../node_modules/@capacitor/ios/scripts/pods_helpers'
|
|
4
|
+
|
|
5
|
+
platform :ios, '14.0'
|
|
6
|
+
use_frameworks!
|
|
7
|
+
|
|
8
|
+
# workaround to avoid Xcode caching of Pods that requires
|
|
9
|
+
# Product -> Clean Build Folder after new Cordova plugins installed
|
|
10
|
+
# Requires CocoaPods 1.6 or newer
|
|
11
|
+
install! 'cocoapods', :disable_input_output_paths => true
|
|
12
|
+
|
|
13
|
+
def capacitor_pods
|
|
14
|
+
pod 'Capacitor', :path => '../../node_modules/@capacitor/ios'
|
|
15
|
+
pod 'CapacitorCordova', :path => '../../node_modules/@capacitor/ios'
|
|
16
|
+
pod 'CapacitorApp', :path => '../../node_modules/@capacitor/app'
|
|
17
|
+
end
|
|
18
|
+
|
|
19
|
+
target 'App' do
|
|
20
|
+
capacitor_pods
|
|
21
|
+
# Add your Pods here
|
|
22
|
+
end
|
|
23
|
+
|
|
24
|
+
post_install do |installer|
|
|
25
|
+
assertDeploymentTarget(installer)
|
|
26
|
+
end
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "idv",
|
|
3
|
+
"scripts": {
|
|
4
|
+
"setup": "scripts/setup.sh",
|
|
5
|
+
"ios": "scripts/ios.sh",
|
|
6
|
+
"android": "scripts/android.sh"
|
|
7
|
+
},
|
|
8
|
+
"dependencies": {
|
|
9
|
+
"@regulaforensics/idv": "3.2.23-beta",
|
|
10
|
+
"@regulaforensics/document-reader": "8.4.312-beta",
|
|
11
|
+
"@regulaforensics/face-sdk": "7.2.455-beta",
|
|
12
|
+
"@regulaforensics/document-reader-core-fullauthrfid": "8.4.271-beta",
|
|
13
|
+
"@regulaforensics/face-core-basic": "7.3.280-beta",
|
|
14
|
+
"@regulaforensics/idv-module-document-reader": "3.2.29-beta",
|
|
15
|
+
"@regulaforensics/idv-module-face": "3.2.28-beta",
|
|
16
|
+
"@capacitor/cli": "7.0.1",
|
|
17
|
+
"@capacitor/core": "7.0.1",
|
|
18
|
+
"@capacitor/app": "7.0.0",
|
|
19
|
+
"@capacitor/ios": "7.0.1",
|
|
20
|
+
"@capacitor/android": "7.0.1",
|
|
21
|
+
"@capacitor/status-bar": "7.0.0",
|
|
22
|
+
"@ionic/react": "8.4.3",
|
|
23
|
+
"@vitejs/plugin-react": "4.3.4",
|
|
24
|
+
"vite-plugin-static-copy": "3.1.2",
|
|
25
|
+
"@types/react-router-dom": "5.3.3"
|
|
26
|
+
}
|
|
27
|
+
}
|
|
File without changes
|