Skip to content

Commit 7205995

Browse files
authored
Adds iOS privacy manifest. (Baseflow#225)
1 parent b46f004 commit 7205995

File tree

4 files changed

+20
-32
lines changed

4 files changed

+20
-32
lines changed

geocoding_ios/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 3.0.1
2+
3+
* Adds privacy manifest.
4+
15
## 3.0.0
26

37
* **BREAKING CHANGES**:
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
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>NSPrivacyTrackingDomains</key>
6+
<array/>
7+
<key>NSPrivacyAccessedAPITypes</key>
8+
<array/>
9+
<key>NSPrivacyCollectedDataTypes</key>
10+
<array/>
11+
<key>NSPrivacyTracking</key>
12+
<false/>
13+
</dict>
14+
</plist>

geocoding_ios/ios/geocoding_ios.podspec

+1
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,5 @@ A new flutter plugin project.
2020

2121
# Flutter.framework does not contain a i386 slice. Only x86_64 simulators are supported.
2222
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES', 'VALID_ARCHS[sdk=iphonesimulator*]' => 'x86_64' }
23+
s.resource_bundles = {'geocoding_ios_privacy' => ['Resources/PrivacyInfo.xcprivacy']}
2324
end

geocoding_ios/pubspec.yaml

+1-32
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: geocoding_ios
22
description: A Flutter Geocoding plugin which provides easy geocoding and reverse-geocoding features.
3-
version: 3.0.0
3+
version: 3.0.1
44
repository: https://github.com/baseflow/flutter-geocoding/tree/main/geocoding_ios
55
issue_tracker: https://github.com/Baseflow/flutter-geocoding/issues
66

@@ -37,34 +37,3 @@ flutter:
3737
ios:
3838
pluginClass: GeocodingPlugin
3939
dartPluginClass: GeocodingIOS
40-
41-
# To add assets to your plugin package, add an assets section, like this:
42-
# assets:
43-
# - images/a_dot_burr.jpeg
44-
# - images/a_dot_ham.jpeg
45-
#
46-
# For details regarding assets in packages, see
47-
# https://flutter.dev/assets-and-images/#from-packages
48-
#
49-
# An image asset can refer to one or more resolution-specific "variants", see
50-
# https://flutter.dev/assets-and-images/#resolution-aware.
51-
52-
# To add custom fonts to your plugin package, add a fonts section here,
53-
# in this "flutter" section. Each entry in this list should have a
54-
# "family" key with the font family name, and a "fonts" key with a
55-
# list giving the asset and other descriptors for the font. For
56-
# example:
57-
# fonts:
58-
# - family: Schyler
59-
# fonts:
60-
# - asset: fonts/Schyler-Regular.ttf
61-
# - asset: fonts/Schyler-Italic.ttf
62-
# style: italic
63-
# - family: Trajan Pro
64-
# fonts:
65-
# - asset: fonts/TrajanPro.ttf
66-
# - asset: fonts/TrajanPro_Bold.ttf
67-
# weight: 700
68-
#
69-
# For details regarding fonts in packages, see
70-
# https://flutter.dev/custom-fonts/#from-packages

0 commit comments

Comments
 (0)