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-09-24 13:39:50 +0200
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
58d74cac40226f0060c9fe34a9752f630b7aaaff
58d74cac
1 parent
c3271f0c
add macos privacy manifest
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
16 additions
and
2 deletions
CHANGELOG.md
macos/mobile_scanner.podspec
macos/mobile_scanner/Package.swift
macos/mobile_scanner/Sources/mobile_scanner/Resources/PrivacyInfo.xcprivacy
CHANGELOG.md
View file @
58d74ca
...
...
@@ -2,6 +2,7 @@
*
[
MacOS
]
Added the corners and size information to barcode results.
*
[
MacOS
]
Added support for
`analyzeImage`
.
*
[
MacOS
]
Added a Privacy Manifest.
*
[
web
]
Added the size information to barcode results.
*
Added support for barcode formats to image analysis.
...
...
macos/mobile_scanner.podspec
View file @
58d74ca
...
...
@@ -18,4 +18,5 @@ An universal scanner for Flutter based on MLKit.
s
.
platform
=
:osx
,
'10.14'
s
.
pod_target_xcconfig
=
{
'DEFINES_MODULE'
=>
'YES'
}
s
.
swift_version
=
'5.0'
s
.
resource_bundles
=
{
'mobile_scanner_macos_privacy'
=>
[
'mobile_scanner/Sources/mobile_scanner/Resources/PrivacyInfo.xcprivacy'
]}
end
...
...
macos/mobile_scanner/Package.swift
View file @
58d74ca
...
...
@@ -17,8 +17,7 @@ let package = Package(
name
:
"mobile_scanner"
,
dependencies
:
[],
resources
:
[
// To add other resources, see the instructions at
// https://developer.apple.com/documentation/xcode/bundling-resources-with-a-swift-package
.
process
(
"Resources"
),
]
)
]
...
...
macos/mobile_scanner/Sources/mobile_scanner/Resources/PrivacyInfo.xcprivacy
0 → 100644
View file @
58d74ca
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist
version=
"1.0"
>
<dict>
<!-- The key NSPrivacyAccessedAPITypes is not required for MacOS -->
<key>
NSPrivacyTrackingDomains
</key>
<array/>
<key>
NSPrivacyCollectedDataTypes
</key>
<array/>
<key>
NSPrivacyTracking
</key>
<false/>
</dict>
</plist>
\ No newline at end of file
...
...
Please
register
or
login
to post a comment