diff --git a/geocoding_ios/CHANGELOG.md b/geocoding_ios/CHANGELOG.md index 1fdf8ca..ffaa32c 100644 --- a/geocoding_ios/CHANGELOG.md +++ b/geocoding_ios/CHANGELOG.md @@ -1,3 +1,7 @@ +## 3.0.1 + +* Adds privacy manifest. + ## 3.0.0 * **BREAKING CHANGES**: diff --git a/geocoding_ios/ios/Resources/PrivacyInfo.xcprivacy b/geocoding_ios/ios/Resources/PrivacyInfo.xcprivacy new file mode 100644 index 0000000..aac0f74 --- /dev/null +++ b/geocoding_ios/ios/Resources/PrivacyInfo.xcprivacy @@ -0,0 +1,14 @@ + + + + + NSPrivacyTrackingDomains + + NSPrivacyAccessedAPITypes + + NSPrivacyCollectedDataTypes + + NSPrivacyTracking + + + diff --git a/geocoding_ios/ios/geocoding_ios.podspec b/geocoding_ios/ios/geocoding_ios.podspec index 64b6f4c..8d3dabb 100644 --- a/geocoding_ios/ios/geocoding_ios.podspec +++ b/geocoding_ios/ios/geocoding_ios.podspec @@ -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 diff --git a/geocoding_ios/pubspec.yaml b/geocoding_ios/pubspec.yaml index b979d26..b2e338c 100644 --- a/geocoding_ios/pubspec.yaml +++ b/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 @@ -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