Skip to content

Commit

Permalink
Adds iOS privacy manifest. (#225)
Browse files Browse the repository at this point in the history
  • Loading branch information
mvanbeusekom committed Mar 18, 2024
1 parent b46f004 commit 7205995
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 32 deletions.
4 changes: 4 additions & 0 deletions geocoding_ios/CHANGELOG.md
@@ -1,3 +1,7 @@
## 3.0.1

* Adds privacy manifest.

## 3.0.0

* **BREAKING CHANGES**:
Expand Down
14 changes: 14 additions & 0 deletions geocoding_ios/ios/Resources/PrivacyInfo.xcprivacy
@@ -0,0 +1,14 @@
<?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>
<key>NSPrivacyTrackingDomains</key>
<array/>
<key>NSPrivacyAccessedAPITypes</key>
<array/>
<key>NSPrivacyCollectedDataTypes</key>
<array/>
<key>NSPrivacyTracking</key>
<false/>
</dict>
</plist>
1 change: 1 addition & 0 deletions geocoding_ios/ios/geocoding_ios.podspec
Expand Up @@ -20,4 +20,5 @@ A new flutter plugin project.

# Flutter.framework does not contain a i386 slice. Only x86_64 simulators are supported.
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES', 'VALID_ARCHS[sdk=iphonesimulator*]' => 'x86_64' }
s.resource_bundles = {'geocoding_ios_privacy' => ['Resources/PrivacyInfo.xcprivacy']}
end
33 changes: 1 addition & 32 deletions geocoding_ios/pubspec.yaml
@@ -1,6 +1,6 @@
name: geocoding_ios
description: A Flutter Geocoding plugin which provides easy geocoding and reverse-geocoding features.
version: 3.0.0
version: 3.0.1
repository: https://github.com/baseflow/flutter-geocoding/tree/main/geocoding_ios
issue_tracker: https://github.com/Baseflow/flutter-geocoding/issues

Expand Down Expand Up @@ -37,34 +37,3 @@ flutter:
ios:
pluginClass: GeocodingPlugin
dartPluginClass: GeocodingIOS

# To add assets to your plugin package, add an assets section, like this:
# assets:
# - images/a_dot_burr.jpeg
# - images/a_dot_ham.jpeg
#
# For details regarding assets in packages, see
# https://flutter.dev/assets-and-images/#from-packages
#
# An image asset can refer to one or more resolution-specific "variants", see
# https://flutter.dev/assets-and-images/#resolution-aware.

# To add custom fonts to your plugin package, add a fonts section here,
# in this "flutter" section. Each entry in this list should have a
# "family" key with the font family name, and a "fonts" key with a
# list giving the asset and other descriptors for the font. For
# example:
# fonts:
# - family: Schyler
# fonts:
# - asset: fonts/Schyler-Regular.ttf
# - asset: fonts/Schyler-Italic.ttf
# style: italic
# - family: Trajan Pro
# fonts:
# - asset: fonts/TrajanPro.ttf
# - asset: fonts/TrajanPro_Bold.ttf
# weight: 700
#
# For details regarding fonts in packages, see
# https://flutter.dev/custom-fonts/#from-packages

0 comments on commit 7205995

Please sign in to comment.