Toggle navigation
Toggle navigation
This project
Loading...
Sign in
flutter_package
/
mobile_scanner
Go to a project
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
Navaron Bracke
2024-10-11 09:11:47 +0200
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
e91262cbe30471bcbcf0b74209bfd1884c1871a2
e91262cb
1 parent
89bda00f
exclude unsupported arch for iOS
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
ios/mobile_scanner.podspec
ios/mobile_scanner.podspec
View file @
e91262c
...
...
@@ -18,8 +18,12 @@ An universal scanner for Flutter based on MLKit.
s
.
dependency
'GoogleMLKit/BarcodeScanning'
,
'~> 7.0.0'
s
.
platform
=
:ios
,
'15.5.0'
s
.
static_framework
=
true
# Flutter.framework does not contain a i386 slice.
s
.
pod_target_xcconfig
=
{
'DEFINES_MODULE'
=>
'YES'
,
'EXCLUDED_ARCHS[sdk=iphonesimulator*]'
=>
'i386'
}
# Flutter.framework does not contain a i386 slice, and MLKit does not support armv7.
s
.
pod_target_xcconfig
=
{
'DEFINES_MODULE'
=>
'YES'
,
'EXCLUDED_ARCHS[sdk=iphonesimulator*]'
=>
'i386 armv7'
,
'EXCLUDED_ARCHS[sdk=iphoneos*]'
=>
'armv7'
,
}
s
.
swift_version
=
'5.0'
s
.
resource_bundles
=
{
'mobile_scanner_privacy'
=>
[
'Resources/PrivacyInfo.xcprivacy'
]
}
end
...
...
Please
register
or
login
to post a comment