I got the issue when try to run the app after install the package in IOS simulator, i got the error like
wift Compiler Error (Xcode): Could not find module 'WeScan' for target 'arm64-apple-ios-simulator'; found: x86_64-apple-ios-simulator
I found in the edge_detection.podspec, there is the line
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES', 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'i386' }
I clone the source code and remove the 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'i386'. The app build success in simulator.
I got the issue when try to run the app after install the package in IOS simulator, i got the error like wift Compiler Error (Xcode): Could not find module 'WeScan' for target 'arm64-apple-ios-simulator'; found: x86_64-apple-ios-simulator
I found in the edge_detection.podspec, there is the line s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES', 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'i386' }
I clone the source code and remove the 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'i386'. The app build success in simulator.
Please fix the issue on IOS simulator.