@idpass/smartscanner-capacitor 0.3.8 → 0.3.12
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/{SmartScannerCapacitorPlugin.podspec → IdpassSmartscannerCapacitor.podspec} +1 -1
- package/android/aar/smartscannerlib-debug.aar +0 -0
- package/android/aar/smartscannerlib-release.aar +0 -0
- package/ios/.npmignore +4 -0
- package/ios/Plugin/Plugin.m +1 -1
- package/ios/Plugin/Plugin.swift +2 -2
- package/ios/Pods/Local Podspecs/Capacitor.podspec.json +30 -0
- package/ios/Pods/Local Podspecs/CapacitorCordova.podspec.json +22 -0
- package/ios/Pods/Manifest.lock +22 -0
- package/ios/Pods/Pods.xcodeproj/project.pbxproj +1380 -0
- package/ios/Pods/Pods.xcodeproj/xcuserdata/reubenjamesmangubat.xcuserdatad/xcschemes/Capacitor.xcscheme +58 -0
- package/ios/Pods/Pods.xcodeproj/xcuserdata/reubenjamesmangubat.xcuserdatad/xcschemes/CapacitorCordova.xcscheme +58 -0
- package/ios/Pods/Pods.xcodeproj/xcuserdata/reubenjamesmangubat.xcuserdatad/xcschemes/Pods-Plugin.xcscheme +58 -0
- package/ios/Pods/Pods.xcodeproj/xcuserdata/reubenjamesmangubat.xcuserdatad/xcschemes/Pods-PluginTests.xcscheme +58 -0
- package/ios/Pods/Pods.xcodeproj/xcuserdata/reubenjamesmangubat.xcuserdatad/xcschemes/xcschememanagement.plist +31 -0
- package/ios/Pods/Target Support Files/Capacitor/Capacitor-Info.plist +26 -0
- package/ios/Pods/Target Support Files/Capacitor/Capacitor-dummy.m +5 -0
- package/ios/Pods/Target Support Files/Capacitor/Capacitor-prefix.pch +12 -0
- package/ios/Pods/Target Support Files/Capacitor/Capacitor-umbrella.h +23 -0
- package/ios/Pods/Target Support Files/Capacitor/Capacitor.debug.xcconfig +15 -0
- package/ios/Pods/Target Support Files/Capacitor/Capacitor.modulemap +6 -0
- package/ios/Pods/Target Support Files/Capacitor/Capacitor.release.xcconfig +15 -0
- package/ios/Pods/Target Support Files/CapacitorCordova/CapacitorCordova-Info.plist +26 -0
- package/ios/Pods/Target Support Files/CapacitorCordova/CapacitorCordova-dummy.m +5 -0
- package/ios/Pods/Target Support Files/CapacitorCordova/CapacitorCordova-prefix.pch +12 -0
- package/ios/Pods/Target Support Files/CapacitorCordova/CapacitorCordova-umbrella.h +33 -0
- package/ios/Pods/Target Support Files/CapacitorCordova/CapacitorCordova.debug.xcconfig +12 -0
- package/ios/Pods/Target Support Files/CapacitorCordova/CapacitorCordova.modulemap +6 -0
- package/ios/Pods/Target Support Files/CapacitorCordova/CapacitorCordova.release.xcconfig +12 -0
- package/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin-Info.plist +26 -0
- package/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin-acknowledgements.markdown +3 -0
- package/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin-acknowledgements.plist +29 -0
- package/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin-dummy.m +5 -0
- package/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin-umbrella.h +16 -0
- package/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin.debug.xcconfig +14 -0
- package/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin.modulemap +6 -0
- package/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin.release.xcconfig +14 -0
- package/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests-Info.plist +26 -0
- package/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests-acknowledgements.markdown +3 -0
- package/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests-acknowledgements.plist +29 -0
- package/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests-dummy.m +5 -0
- package/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests-frameworks.sh +188 -0
- package/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests-umbrella.h +16 -0
- package/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests.debug.xcconfig +15 -0
- package/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests.modulemap +6 -0
- package/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests.release.xcconfig +15 -0
- package/package.json +8 -4
|
@@ -3,7 +3,7 @@ require 'json'
|
|
|
3
3
|
package = JSON.parse(File.read(File.join(__dir__, 'package.json')))
|
|
4
4
|
|
|
5
5
|
Pod::Spec.new do |s|
|
|
6
|
-
s.name = '
|
|
6
|
+
s.name = 'IdpassSmartscannerCapacitor'
|
|
7
7
|
s.version = package['version']
|
|
8
8
|
s.summary = package['description']
|
|
9
9
|
s.license = package['license']
|
|
Binary file
|
|
Binary file
|
package/ios/.npmignore
ADDED
package/ios/Plugin/Plugin.m
CHANGED
|
@@ -3,6 +3,6 @@
|
|
|
3
3
|
|
|
4
4
|
// Define the plugin using the CAP_PLUGIN Macro, and
|
|
5
5
|
// each method the plugin supports using the CAP_PLUGIN_METHOD macro.
|
|
6
|
-
CAP_PLUGIN(
|
|
6
|
+
CAP_PLUGIN(SmartScannerPlugin, "SmartScannerPlugin",
|
|
7
7
|
CAP_PLUGIN_METHOD(echo, CAPPluginReturnPromise);
|
|
8
8
|
)
|
package/ios/Plugin/Plugin.swift
CHANGED
|
@@ -5,8 +5,8 @@ import Capacitor
|
|
|
5
5
|
* Please read the Capacitor iOS Plugin Development Guide
|
|
6
6
|
* here: https://capacitorjs.com/docs/plugins/ios
|
|
7
7
|
*/
|
|
8
|
-
@objc(
|
|
9
|
-
public class
|
|
8
|
+
@objc(SmartScannerPlugin)
|
|
9
|
+
public class SmartScannerPlugin: CAPPlugin {
|
|
10
10
|
|
|
11
11
|
@objc func echo(_ call: CAPPluginCall) {
|
|
12
12
|
let value = call.getString("value") ?? ""
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "Capacitor",
|
|
3
|
+
"version": "2.4.1",
|
|
4
|
+
"summary": "Capacitor for iOS",
|
|
5
|
+
"social_media_url": "https://twitter.com/capacitorjs",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"homepage": "https://capacitorjs.com/",
|
|
8
|
+
"platforms": {
|
|
9
|
+
"ios": "11.0"
|
|
10
|
+
},
|
|
11
|
+
"authors": {
|
|
12
|
+
"Ionic Team": "hi@ionicframework.com"
|
|
13
|
+
},
|
|
14
|
+
"source": {
|
|
15
|
+
"git": "https://github.com/ionic-team/capacitor.git",
|
|
16
|
+
"tag": "2.4.1"
|
|
17
|
+
},
|
|
18
|
+
"source_files": [
|
|
19
|
+
"Capacitor/Capacitor/*.{swift,h,m}",
|
|
20
|
+
"Capacitor/Capacitor/Plugins/*.{swift,h,m}",
|
|
21
|
+
"Capacitor/Capacitor/Plugins/**/*.{swift,h,m}"
|
|
22
|
+
],
|
|
23
|
+
"dependencies": {
|
|
24
|
+
"CapacitorCordova": [
|
|
25
|
+
|
|
26
|
+
]
|
|
27
|
+
},
|
|
28
|
+
"swift_versions": "5.0",
|
|
29
|
+
"swift_version": "5.0"
|
|
30
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "CapacitorCordova",
|
|
3
|
+
"module_name": "Cordova",
|
|
4
|
+
"version": "2.4.1",
|
|
5
|
+
"summary": "Capacitor Cordova Compatibility Layer",
|
|
6
|
+
"homepage": "https://capacitorjs.com",
|
|
7
|
+
"license": "MIT",
|
|
8
|
+
"authors": {
|
|
9
|
+
"Ionic Team": "hi@ionicframework.com"
|
|
10
|
+
},
|
|
11
|
+
"source": {
|
|
12
|
+
"git": "https://github.com/ionic-team/capacitor",
|
|
13
|
+
"tag": "2.4.1"
|
|
14
|
+
},
|
|
15
|
+
"platforms": {
|
|
16
|
+
"ios": "11.0"
|
|
17
|
+
},
|
|
18
|
+
"source_files": "CapacitorCordova/**/*.{h,m}",
|
|
19
|
+
"public_header_files": "CapacitorCordova/CapacitorCordova/Classes/Public/*.h",
|
|
20
|
+
"requires_arc": true,
|
|
21
|
+
"frameworks": "WebKit"
|
|
22
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
PODS:
|
|
2
|
+
- Capacitor (2.4.1):
|
|
3
|
+
- CapacitorCordova
|
|
4
|
+
- CapacitorCordova (2.4.1)
|
|
5
|
+
|
|
6
|
+
DEPENDENCIES:
|
|
7
|
+
- "Capacitor (from `../node_modules/@capacitor/ios`)"
|
|
8
|
+
- "CapacitorCordova (from `../node_modules/@capacitor/ios`)"
|
|
9
|
+
|
|
10
|
+
EXTERNAL SOURCES:
|
|
11
|
+
Capacitor:
|
|
12
|
+
:path: "../node_modules/@capacitor/ios"
|
|
13
|
+
CapacitorCordova:
|
|
14
|
+
:path: "../node_modules/@capacitor/ios"
|
|
15
|
+
|
|
16
|
+
SPEC CHECKSUMS:
|
|
17
|
+
Capacitor: 12f6492ebd90494ff60f37b57718f5f1b5d841eb
|
|
18
|
+
CapacitorCordova: bf294ab653635d3aa5d7ec1512753f01df7b7149
|
|
19
|
+
|
|
20
|
+
PODFILE CHECKSUM: e66d6fa04b0daaf06d8498d39637adf77139c716
|
|
21
|
+
|
|
22
|
+
COCOAPODS: 1.11.0
|