@regulaforensics/idv 3.2.1-nightly

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.
Files changed (140) hide show
  1. package/README.md +30 -0
  2. package/RNIDV.podspec +21 -0
  3. package/android/CVDIDV.kt +48 -0
  4. package/android/build.gradle +32 -0
  5. package/android/cordova.gradle +20 -0
  6. package/android/src/main/java/com/regula/plugin/idv/JSONConstructor.kt +135 -0
  7. package/android/src/main/java/com/regula/plugin/idv/Main.kt +124 -0
  8. package/android/src/main/java/com/regula/plugin/idv/RNIDVModule.kt +71 -0
  9. package/android/src/main/java/com/regula/plugin/idv/Utils.kt +60 -0
  10. package/examples/capacitor/README.md +15 -0
  11. package/examples/capacitor/android/app/build.gradle +50 -0
  12. package/examples/capacitor/android/app/capacitor.build.gradle +22 -0
  13. package/examples/capacitor/android/app/proguard-rules.pro +21 -0
  14. package/examples/capacitor/android/app/src/main/AndroidManifest.xml +26 -0
  15. package/examples/capacitor/android/app/src/main/assets/Regula/.gitkeep +0 -0
  16. package/examples/capacitor/android/app/src/main/java/com/regula/example/idv/capacitor/MainActivity.java +5 -0
  17. package/examples/capacitor/android/app/src/main/res/drawable/ic_launcher.png +0 -0
  18. package/examples/capacitor/android/app/src/main/res/drawable/ic_launcher_foreground.png +0 -0
  19. package/examples/capacitor/android/app/src/main/res/drawable/ic_launcher_round.png +0 -0
  20. package/examples/capacitor/android/app/src/main/res/drawable/launcher.xml +4 -0
  21. package/examples/capacitor/android/app/src/main/res/drawable/launcher_round.xml +4 -0
  22. package/examples/capacitor/android/app/src/main/res/drawable/splash.png +0 -0
  23. package/examples/capacitor/android/app/src/main/res/layout/activity_main.xml +12 -0
  24. package/examples/capacitor/android/app/src/main/res/values/styles.xml +22 -0
  25. package/examples/capacitor/android/build.gradle +30 -0
  26. package/examples/capacitor/android/capacitor.settings.gradle +15 -0
  27. package/examples/capacitor/android/gradle/wrapper/gradle-wrapper.jar +0 -0
  28. package/examples/capacitor/android/gradle/wrapper/gradle-wrapper.properties +7 -0
  29. package/examples/capacitor/android/gradle.properties +22 -0
  30. package/examples/capacitor/android/gradlew +252 -0
  31. package/examples/capacitor/android/gradlew.bat +94 -0
  32. package/examples/capacitor/android/settings.gradle +5 -0
  33. package/examples/capacitor/android/variables.gradle +16 -0
  34. package/examples/capacitor/index.html +5 -0
  35. package/examples/capacitor/index.tsx +16 -0
  36. package/examples/capacitor/ionic.config.json +7 -0
  37. package/examples/capacitor/ios/App/App/App.entitlements +10 -0
  38. package/examples/capacitor/ios/App/App/AppDelegate.swift +49 -0
  39. package/examples/capacitor/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-512@2x.png +0 -0
  40. package/examples/capacitor/ios/App/App/Assets.xcassets/AppIcon.appiconset/Contents.json +14 -0
  41. package/examples/capacitor/ios/App/App/Assets.xcassets/Contents.json +6 -0
  42. package/examples/capacitor/ios/App/App/Assets.xcassets/Splash.imageset/Contents.json +23 -0
  43. package/examples/capacitor/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732-1.png +0 -0
  44. package/examples/capacitor/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732-2.png +0 -0
  45. package/examples/capacitor/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732.png +0 -0
  46. package/examples/capacitor/ios/App/App/Base.lproj/LaunchScreen.storyboard +32 -0
  47. package/examples/capacitor/ios/App/App/Base.lproj/Main.storyboard +19 -0
  48. package/examples/capacitor/ios/App/App/Info.plist +65 -0
  49. package/examples/capacitor/ios/App/App.xcodeproj/project.pbxproj +418 -0
  50. package/examples/capacitor/ios/App/App.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
  51. package/examples/capacitor/ios/App/App.xcworkspace/contents.xcworkspacedata +10 -0
  52. package/examples/capacitor/ios/App/App.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  53. package/examples/capacitor/ios/App/Podfile +26 -0
  54. package/examples/capacitor/package-lock.json +3350 -0
  55. package/examples/capacitor/package.json +27 -0
  56. package/examples/capacitor/public/assets/.gitkeep +0 -0
  57. package/examples/capacitor/scripts/android.sh +9 -0
  58. package/examples/capacitor/scripts/ios.sh +8 -0
  59. package/examples/capacitor/scripts/setup.sh +14 -0
  60. package/examples/capacitor/src/main.css +148 -0
  61. package/examples/capacitor/src/main.html +17 -0
  62. package/examples/capacitor/src/main.tsx +124 -0
  63. package/examples/capacitor/tsconfig.json +5 -0
  64. package/examples/capacitor/vite.config.ts +17 -0
  65. package/examples/ionic/README.md +15 -0
  66. package/examples/ionic/angular.json +39 -0
  67. package/examples/ionic/assets/.gitkeep +0 -0
  68. package/examples/ionic/config.xml +60 -0
  69. package/examples/ionic/images/icon.png +0 -0
  70. package/examples/ionic/index.html +19 -0
  71. package/examples/ionic/index.tsx +32 -0
  72. package/examples/ionic/ionic.config.json +7 -0
  73. package/examples/ionic/package-lock.json +14261 -0
  74. package/examples/ionic/package.json +46 -0
  75. package/examples/ionic/scripts/android.sh +8 -0
  76. package/examples/ionic/scripts/ios.sh +8 -0
  77. package/examples/ionic/scripts/setup.sh +8 -0
  78. package/examples/ionic/src/main.css +148 -0
  79. package/examples/ionic/src/main.html +17 -0
  80. package/examples/ionic/src/main.tsx +124 -0
  81. package/examples/ionic/tsconfig.json +14 -0
  82. package/examples/react_native/README.md +15 -0
  83. package/examples/react_native/app.config.ts +46 -0
  84. package/examples/react_native/assets/.gitkeep +0 -0
  85. package/examples/react_native/images/icon.png +0 -0
  86. package/examples/react_native/index.html +12 -0
  87. package/examples/react_native/index.tsx +63 -0
  88. package/examples/react_native/metro.config.js +7 -0
  89. package/examples/react_native/package-lock.json +8996 -0
  90. package/examples/react_native/package.json +29 -0
  91. package/examples/react_native/scripts/android.sh +13 -0
  92. package/examples/react_native/scripts/ios.sh +12 -0
  93. package/examples/react_native/scripts/setup.sh +12 -0
  94. package/examples/react_native/src/main.css +148 -0
  95. package/examples/react_native/src/main.html +17 -0
  96. package/examples/react_native/src/main.tsx +124 -0
  97. package/ios/CVDIDV.swift +51 -0
  98. package/ios/JSONConstructor.swift +132 -0
  99. package/ios/Main.swift +91 -0
  100. package/ios/RNIDV.m +11 -0
  101. package/ios/RNIDV.swift +47 -0
  102. package/ios/Utils.swift +52 -0
  103. package/package.json +38 -0
  104. package/plugin.xml +46 -0
  105. package/test/json.tsx +40 -0
  106. package/test/package-lock.json +584 -0
  107. package/test/package.json +9 -0
  108. package/test/test.tsx +13 -0
  109. package/test/utils.tsx +38 -0
  110. package/www/capacitor/config/api_key_connection_config.js +32 -0
  111. package/www/capacitor/config/credentials_connection_config.js +32 -0
  112. package/www/capacitor/config/prepare_workflow_config.js +20 -0
  113. package/www/capacitor/config/start_workflow_config.js +24 -0
  114. package/www/capacitor/config/token_connection_config.js +20 -0
  115. package/www/capacitor/index.js +110 -0
  116. package/www/capacitor/internal/bridge.js +30 -0
  117. package/www/capacitor/internal/cordova.js +17 -0
  118. package/www/capacitor/model/workflow.js +28 -0
  119. package/www/capacitor/model/workflow_result.js +21 -0
  120. package/www/capacitor/model/workflow_step.js +19 -0
  121. package/www/cordova.js +595 -0
  122. package/www/react-native/config/api_key_connection_config.js +32 -0
  123. package/www/react-native/config/credentials_connection_config.js +32 -0
  124. package/www/react-native/config/prepare_workflow_config.js +20 -0
  125. package/www/react-native/config/start_workflow_config.js +24 -0
  126. package/www/react-native/config/token_connection_config.js +20 -0
  127. package/www/react-native/index.js +110 -0
  128. package/www/react-native/internal/bridge.js +30 -0
  129. package/www/react-native/model/workflow.js +28 -0
  130. package/www/react-native/model/workflow_result.js +21 -0
  131. package/www/react-native/model/workflow_step.js +19 -0
  132. package/www/types/config/api_key_connection_config.d.ts +6 -0
  133. package/www/types/config/credentials_connection_config.d.ts +6 -0
  134. package/www/types/config/prepare_workflow_config.d.ts +3 -0
  135. package/www/types/config/start_workflow_config.d.ts +4 -0
  136. package/www/types/config/token_connection_config.d.ts +3 -0
  137. package/www/types/index.d.ts +62 -0
  138. package/www/types/model/workflow.d.ts +9 -0
  139. package/www/types/model/workflow_result.d.ts +8 -0
  140. package/www/types/model/workflow_step.d.ts +6 -0
@@ -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,418 @@
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
+ C3D68A432E9FF39D006194D2 /* regula.license in Resources */ = {isa = PBXBuildFile; fileRef = C3D68A422E9FF39D006194D2 /* regula.license */; };
20
+ /* End PBXBuildFile section */
21
+
22
+ /* Begin PBXFileReference section */
23
+ 2FAD9762203C412B000D30F8 /* config.xml */ = {isa = PBXFileReference; lastKnownFileType = text.xml; path = config.xml; sourceTree = "<group>"; };
24
+ 34ADEF8A2B6C25C900B38C44 /* App.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = App.entitlements; sourceTree = "<group>"; };
25
+ 50379B222058CBB4000EE86E /* capacitor.config.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = capacitor.config.json; sourceTree = "<group>"; };
26
+ 504EC3041FED79650016851F /* App.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = App.app; sourceTree = BUILT_PRODUCTS_DIR; };
27
+ 504EC3071FED79650016851F /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
28
+ 504EC30C1FED79650016851F /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
29
+ 504EC30E1FED79650016851F /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
30
+ 504EC3111FED79650016851F /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
31
+ 504EC3131FED79650016851F /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
32
+ 50B271D01FEDC1A000F3C39B /* public */ = {isa = PBXFileReference; lastKnownFileType = folder; path = public; sourceTree = "<group>"; };
33
+ AF277DCFFFF123FFC6DF26C7 /* Pods_App.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_App.framework; sourceTree = BUILT_PRODUCTS_DIR; };
34
+ 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>"; };
35
+ C3C12F0C2DEDD3AA0068B75D /* db.dat */ = {isa = PBXFileReference; lastKnownFileType = file; path = db.dat; sourceTree = "<group>"; };
36
+ C3D68A422E9FF39D006194D2 /* regula.license */ = {isa = PBXFileReference; lastKnownFileType = file; path = regula.license; sourceTree = "<group>"; };
37
+ 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>"; };
38
+ /* End PBXFileReference section */
39
+
40
+ /* Begin PBXFrameworksBuildPhase section */
41
+ 504EC3011FED79650016851F /* Frameworks */ = {
42
+ isa = PBXFrameworksBuildPhase;
43
+ buildActionMask = 2147483647;
44
+ files = (
45
+ A084ECDBA7D38E1E42DFC39D /* Pods_App.framework in Frameworks */,
46
+ );
47
+ runOnlyForDeploymentPostprocessing = 0;
48
+ };
49
+ /* End PBXFrameworksBuildPhase section */
50
+
51
+ /* Begin PBXGroup section */
52
+ 27E2DDA53C4D2A4D1A88CE4A /* Frameworks */ = {
53
+ isa = PBXGroup;
54
+ children = (
55
+ AF277DCFFFF123FFC6DF26C7 /* Pods_App.framework */,
56
+ );
57
+ name = Frameworks;
58
+ sourceTree = "<group>";
59
+ };
60
+ 504EC2FB1FED79650016851F = {
61
+ isa = PBXGroup;
62
+ children = (
63
+ 504EC3061FED79650016851F /* App */,
64
+ 504EC3051FED79650016851F /* Products */,
65
+ 7F8756D8B27F46E3366F6CEA /* Pods */,
66
+ 27E2DDA53C4D2A4D1A88CE4A /* Frameworks */,
67
+ );
68
+ sourceTree = "<group>";
69
+ };
70
+ 504EC3051FED79650016851F /* Products */ = {
71
+ isa = PBXGroup;
72
+ children = (
73
+ 504EC3041FED79650016851F /* App.app */,
74
+ );
75
+ name = Products;
76
+ sourceTree = "<group>";
77
+ };
78
+ 504EC3061FED79650016851F /* App */ = {
79
+ isa = PBXGroup;
80
+ children = (
81
+ 34ADEF8A2B6C25C900B38C44 /* App.entitlements */,
82
+ 50379B222058CBB4000EE86E /* capacitor.config.json */,
83
+ 504EC3071FED79650016851F /* AppDelegate.swift */,
84
+ 504EC30B1FED79650016851F /* Main.storyboard */,
85
+ 504EC30E1FED79650016851F /* Assets.xcassets */,
86
+ 504EC3101FED79650016851F /* LaunchScreen.storyboard */,
87
+ 504EC3131FED79650016851F /* Info.plist */,
88
+ 2FAD9762203C412B000D30F8 /* config.xml */,
89
+ 50B271D01FEDC1A000F3C39B /* public */,
90
+ C3D68A422E9FF39D006194D2 /* regula.license */,
91
+ C3C12F0C2DEDD3AA0068B75D /* db.dat */,
92
+ );
93
+ path = App;
94
+ sourceTree = "<group>";
95
+ };
96
+ 7F8756D8B27F46E3366F6CEA /* Pods */ = {
97
+ isa = PBXGroup;
98
+ children = (
99
+ FC68EB0AF532CFC21C3344DD /* Pods-App.debug.xcconfig */,
100
+ AF51FD2D460BCFE21FA515B2 /* Pods-App.release.xcconfig */,
101
+ );
102
+ name = Pods;
103
+ sourceTree = "<group>";
104
+ };
105
+ /* End PBXGroup section */
106
+
107
+ /* Begin PBXNativeTarget section */
108
+ 504EC3031FED79650016851F /* App */ = {
109
+ isa = PBXNativeTarget;
110
+ buildConfigurationList = 504EC3161FED79650016851F /* Build configuration list for PBXNativeTarget "App" */;
111
+ buildPhases = (
112
+ 6634F4EFEBD30273BCE97C65 /* [CP] Check Pods Manifest.lock */,
113
+ 504EC3001FED79650016851F /* Sources */,
114
+ 504EC3011FED79650016851F /* Frameworks */,
115
+ 504EC3021FED79650016851F /* Resources */,
116
+ 9592DBEFFC6D2A0C8D5DEB22 /* [CP] Embed Pods Frameworks */,
117
+ );
118
+ buildRules = (
119
+ );
120
+ dependencies = (
121
+ );
122
+ name = App;
123
+ productName = App;
124
+ productReference = 504EC3041FED79650016851F /* App.app */;
125
+ productType = "com.apple.product-type.application";
126
+ };
127
+ /* End PBXNativeTarget section */
128
+
129
+ /* Begin PBXProject section */
130
+ 504EC2FC1FED79650016851F /* Project object */ = {
131
+ isa = PBXProject;
132
+ attributes = {
133
+ LastSwiftUpdateCheck = 0920;
134
+ LastUpgradeCheck = 0920;
135
+ TargetAttributes = {
136
+ 504EC3031FED79650016851F = {
137
+ CreatedOnToolsVersion = 9.2;
138
+ LastSwiftMigration = 1100;
139
+ ProvisioningStyle = Automatic;
140
+ };
141
+ };
142
+ };
143
+ buildConfigurationList = 504EC2FF1FED79650016851F /* Build configuration list for PBXProject "App" */;
144
+ compatibilityVersion = "Xcode 8.0";
145
+ developmentRegion = en;
146
+ hasScannedForEncodings = 0;
147
+ knownRegions = (
148
+ en,
149
+ Base,
150
+ );
151
+ mainGroup = 504EC2FB1FED79650016851F;
152
+ productRefGroup = 504EC3051FED79650016851F /* Products */;
153
+ projectDirPath = "";
154
+ projectRoot = "";
155
+ targets = (
156
+ 504EC3031FED79650016851F /* App */,
157
+ );
158
+ };
159
+ /* End PBXProject section */
160
+
161
+ /* Begin PBXResourcesBuildPhase section */
162
+ 504EC3021FED79650016851F /* Resources */ = {
163
+ isa = PBXResourcesBuildPhase;
164
+ buildActionMask = 2147483647;
165
+ files = (
166
+ 504EC3121FED79650016851F /* LaunchScreen.storyboard in Resources */,
167
+ 50B271D11FEDC1A000F3C39B /* public in Resources */,
168
+ 504EC30F1FED79650016851F /* Assets.xcassets in Resources */,
169
+ 50379B232058CBB4000EE86E /* capacitor.config.json in Resources */,
170
+ 504EC30D1FED79650016851F /* Main.storyboard in Resources */,
171
+ 2FAD9763203C412B000D30F8 /* config.xml in Resources */,
172
+ C3C12F0D2DEDD3AA0068B75D /* db.dat in Resources */,
173
+ C3D68A432E9FF39D006194D2 /* regula.license in Resources */,
174
+ );
175
+ runOnlyForDeploymentPostprocessing = 0;
176
+ };
177
+ /* End PBXResourcesBuildPhase section */
178
+
179
+ /* Begin PBXShellScriptBuildPhase section */
180
+ 6634F4EFEBD30273BCE97C65 /* [CP] Check Pods Manifest.lock */ = {
181
+ isa = PBXShellScriptBuildPhase;
182
+ buildActionMask = 2147483647;
183
+ files = (
184
+ );
185
+ inputPaths = (
186
+ "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
187
+ "${PODS_ROOT}/Manifest.lock",
188
+ );
189
+ name = "[CP] Check Pods Manifest.lock";
190
+ outputPaths = (
191
+ "$(DERIVED_FILE_DIR)/Pods-App-checkManifestLockResult.txt",
192
+ );
193
+ runOnlyForDeploymentPostprocessing = 0;
194
+ shellPath = /bin/sh;
195
+ 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";
196
+ showEnvVarsInLog = 0;
197
+ };
198
+ 9592DBEFFC6D2A0C8D5DEB22 /* [CP] Embed Pods Frameworks */ = {
199
+ isa = PBXShellScriptBuildPhase;
200
+ buildActionMask = 2147483647;
201
+ files = (
202
+ );
203
+ inputPaths = (
204
+ );
205
+ name = "[CP] Embed Pods Frameworks";
206
+ outputPaths = (
207
+ );
208
+ runOnlyForDeploymentPostprocessing = 0;
209
+ shellPath = /bin/sh;
210
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-App/Pods-App-frameworks.sh\"\n";
211
+ showEnvVarsInLog = 0;
212
+ };
213
+ /* End PBXShellScriptBuildPhase section */
214
+
215
+ /* Begin PBXSourcesBuildPhase section */
216
+ 504EC3001FED79650016851F /* Sources */ = {
217
+ isa = PBXSourcesBuildPhase;
218
+ buildActionMask = 2147483647;
219
+ files = (
220
+ 504EC3081FED79650016851F /* AppDelegate.swift in Sources */,
221
+ );
222
+ runOnlyForDeploymentPostprocessing = 0;
223
+ };
224
+ /* End PBXSourcesBuildPhase section */
225
+
226
+ /* Begin PBXVariantGroup section */
227
+ 504EC30B1FED79650016851F /* Main.storyboard */ = {
228
+ isa = PBXVariantGroup;
229
+ children = (
230
+ 504EC30C1FED79650016851F /* Base */,
231
+ );
232
+ name = Main.storyboard;
233
+ sourceTree = "<group>";
234
+ };
235
+ 504EC3101FED79650016851F /* LaunchScreen.storyboard */ = {
236
+ isa = PBXVariantGroup;
237
+ children = (
238
+ 504EC3111FED79650016851F /* Base */,
239
+ );
240
+ name = LaunchScreen.storyboard;
241
+ sourceTree = "<group>";
242
+ };
243
+ /* End PBXVariantGroup section */
244
+
245
+ /* Begin XCBuildConfiguration section */
246
+ 504EC3141FED79650016851F /* Debug */ = {
247
+ isa = XCBuildConfiguration;
248
+ buildSettings = {
249
+ ALWAYS_SEARCH_USER_PATHS = NO;
250
+ CLANG_ANALYZER_NONNULL = YES;
251
+ CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
252
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
253
+ CLANG_CXX_LIBRARY = "libc++";
254
+ CLANG_ENABLE_MODULES = YES;
255
+ CLANG_ENABLE_OBJC_ARC = YES;
256
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
257
+ CLANG_WARN_BOOL_CONVERSION = YES;
258
+ CLANG_WARN_COMMA = YES;
259
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
260
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
261
+ CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
262
+ CLANG_WARN_EMPTY_BODY = YES;
263
+ CLANG_WARN_ENUM_CONVERSION = YES;
264
+ CLANG_WARN_INFINITE_RECURSION = YES;
265
+ CLANG_WARN_INT_CONVERSION = YES;
266
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
267
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
268
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
269
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
270
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
271
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
272
+ CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
273
+ CLANG_WARN_UNREACHABLE_CODE = YES;
274
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
275
+ CODE_SIGN_IDENTITY = "iPhone Developer";
276
+ COPY_PHASE_STRIP = NO;
277
+ DEBUG_INFORMATION_FORMAT = dwarf;
278
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
279
+ ENABLE_TESTABILITY = YES;
280
+ GCC_C_LANGUAGE_STANDARD = gnu11;
281
+ GCC_DYNAMIC_NO_PIC = NO;
282
+ GCC_NO_COMMON_BLOCKS = YES;
283
+ GCC_OPTIMIZATION_LEVEL = 0;
284
+ GCC_PREPROCESSOR_DEFINITIONS = (
285
+ "DEBUG=1",
286
+ "$(inherited)",
287
+ );
288
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
289
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
290
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
291
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
292
+ GCC_WARN_UNUSED_FUNCTION = YES;
293
+ GCC_WARN_UNUSED_VARIABLE = YES;
294
+ IPHONEOS_DEPLOYMENT_TARGET = 14.0;
295
+ MTL_ENABLE_DEBUG_INFO = YES;
296
+ ONLY_ACTIVE_ARCH = YES;
297
+ SDKROOT = iphoneos;
298
+ SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
299
+ SWIFT_OPTIMIZATION_LEVEL = "-Onone";
300
+ };
301
+ name = Debug;
302
+ };
303
+ 504EC3151FED79650016851F /* Release */ = {
304
+ isa = XCBuildConfiguration;
305
+ buildSettings = {
306
+ ALWAYS_SEARCH_USER_PATHS = NO;
307
+ CLANG_ANALYZER_NONNULL = YES;
308
+ CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
309
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
310
+ CLANG_CXX_LIBRARY = "libc++";
311
+ CLANG_ENABLE_MODULES = YES;
312
+ CLANG_ENABLE_OBJC_ARC = YES;
313
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
314
+ CLANG_WARN_BOOL_CONVERSION = YES;
315
+ CLANG_WARN_COMMA = YES;
316
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
317
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
318
+ CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
319
+ CLANG_WARN_EMPTY_BODY = YES;
320
+ CLANG_WARN_ENUM_CONVERSION = YES;
321
+ CLANG_WARN_INFINITE_RECURSION = YES;
322
+ CLANG_WARN_INT_CONVERSION = YES;
323
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
324
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
325
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
326
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
327
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
328
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
329
+ CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
330
+ CLANG_WARN_UNREACHABLE_CODE = YES;
331
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
332
+ CODE_SIGN_IDENTITY = "iPhone Developer";
333
+ COPY_PHASE_STRIP = NO;
334
+ DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
335
+ ENABLE_NS_ASSERTIONS = NO;
336
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
337
+ GCC_C_LANGUAGE_STANDARD = gnu11;
338
+ GCC_NO_COMMON_BLOCKS = YES;
339
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
340
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
341
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
342
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
343
+ GCC_WARN_UNUSED_FUNCTION = YES;
344
+ GCC_WARN_UNUSED_VARIABLE = YES;
345
+ IPHONEOS_DEPLOYMENT_TARGET = 14.0;
346
+ MTL_ENABLE_DEBUG_INFO = NO;
347
+ SDKROOT = iphoneos;
348
+ SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
349
+ VALIDATE_PRODUCT = YES;
350
+ };
351
+ name = Release;
352
+ };
353
+ 504EC3171FED79650016851F /* Debug */ = {
354
+ isa = XCBuildConfiguration;
355
+ baseConfigurationReference = FC68EB0AF532CFC21C3344DD /* Pods-App.debug.xcconfig */;
356
+ buildSettings = {
357
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
358
+ CODE_SIGN_ENTITLEMENTS = App/App.entitlements;
359
+ CODE_SIGN_STYLE = Automatic;
360
+ CURRENT_PROJECT_VERSION = 1;
361
+ INFOPLIST_FILE = App/Info.plist;
362
+ IPHONEOS_DEPLOYMENT_TARGET = 15.6;
363
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
364
+ MARKETING_VERSION = 1.0;
365
+ OTHER_SWIFT_FLAGS = "$(inherited) \"-D\" \"COCOAPODS\" \"-DDEBUG\"";
366
+ PRODUCT_BUNDLE_IDENTIFIER = com.regula.example.idv.capacitor;
367
+ PRODUCT_NAME = "$(TARGET_NAME)";
368
+ SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
369
+ SWIFT_VERSION = 5.0;
370
+ TARGETED_DEVICE_FAMILY = "1,2";
371
+ };
372
+ name = Debug;
373
+ };
374
+ 504EC3181FED79650016851F /* Release */ = {
375
+ isa = XCBuildConfiguration;
376
+ baseConfigurationReference = AF51FD2D460BCFE21FA515B2 /* Pods-App.release.xcconfig */;
377
+ buildSettings = {
378
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
379
+ CODE_SIGN_ENTITLEMENTS = App/App.entitlements;
380
+ CODE_SIGN_STYLE = Automatic;
381
+ CURRENT_PROJECT_VERSION = 1;
382
+ INFOPLIST_FILE = App/Info.plist;
383
+ IPHONEOS_DEPLOYMENT_TARGET = 15.6;
384
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
385
+ MARKETING_VERSION = 1.0;
386
+ PRODUCT_BUNDLE_IDENTIFIER = com.regula.example.idv.capacitor;
387
+ PRODUCT_NAME = "$(TARGET_NAME)";
388
+ SWIFT_ACTIVE_COMPILATION_CONDITIONS = "";
389
+ SWIFT_VERSION = 5.0;
390
+ TARGETED_DEVICE_FAMILY = "1,2";
391
+ };
392
+ name = Release;
393
+ };
394
+ /* End XCBuildConfiguration section */
395
+
396
+ /* Begin XCConfigurationList section */
397
+ 504EC2FF1FED79650016851F /* Build configuration list for PBXProject "App" */ = {
398
+ isa = XCConfigurationList;
399
+ buildConfigurations = (
400
+ 504EC3141FED79650016851F /* Debug */,
401
+ 504EC3151FED79650016851F /* Release */,
402
+ );
403
+ defaultConfigurationIsVisible = 0;
404
+ defaultConfigurationName = Release;
405
+ };
406
+ 504EC3161FED79650016851F /* Build configuration list for PBXNativeTarget "App" */ = {
407
+ isa = XCConfigurationList;
408
+ buildConfigurations = (
409
+ 504EC3171FED79650016851F /* Debug */,
410
+ 504EC3181FED79650016851F /* Release */,
411
+ );
412
+ defaultConfigurationIsVisible = 0;
413
+ defaultConfigurationName = Release;
414
+ };
415
+ /* End XCConfigurationList section */
416
+ };
417
+ rootObject = 504EC2FC1FED79650016851F /* Project object */;
418
+ }
@@ -0,0 +1,7 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <Workspace
3
+ version = "1.0">
4
+ <FileRef
5
+ location = "self:App.xcodeproj">
6
+ </FileRef>
7
+ </Workspace>
@@ -0,0 +1,10 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <Workspace
3
+ version = "1.0">
4
+ <FileRef
5
+ location = "group:App.xcodeproj">
6
+ </FileRef>
7
+ <FileRef
8
+ location = "group:Pods/Pods.xcodeproj">
9
+ </FileRef>
10
+ </Workspace>
@@ -0,0 +1,8 @@
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>IDEDidComputeMac32BitWarning</key>
6
+ <true/>
7
+ </dict>
8
+ </plist>
@@ -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