diff --git a/CHANGELOG.md b/CHANGELOG.md index be9d16c..aa353db 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,23 @@ # Changelog +## 3.1.1 + +### Fixed + +* Fixed issue where camera events would not be propagated to the Flutter layer +* Fixed issue on iOS where setting a floor selector +* Fixed issue on Android where goTo MPLocation did not function properly +* Fixed tilt not being applied when moving the camera using a MPCameraUpdate on iOS +* Fixed blank screen on Android when not using MapsindoorsStyle + +### Changed + +* Updated Mapsindoors SDKs: + * iOS to 4.6.1 + ## 3.1.0 -### Addded +### Added * Added functionality for Android to update the map whenever a Display Rule is changed * Added method on MapsIndoorsWidget to disable built-in compass diff --git a/README.md b/README.md index 357050e..1c17257 100644 --- a/README.md +++ b/README.md @@ -78,14 +78,6 @@ platform :ios, '14.0' target 'MyApp' do use_frameworks! - -post_install do |installer| - installer.pods_project.targets.each do |target| - target.build_configurations.each do |config| - config.build_settings['BUILD_LIBRARY_FOR_DISTRIBUTION'] = 'YES' - end - ... -end ... ``` diff --git a/pubspec.yaml b/pubspec.yaml index 92b18fa..40237b7 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: mapsindoors_mapbox description: A MapsIndoors flutter plugin using the Mapbox platform for Android and iOS app usage. -version: 3.1.0 +version: 3.1.1 repository: https://github.com/MapsPeople/mapsindoors_flutter_mapbox homepage: https://www.mapsindoors.com/ @@ -19,9 +19,9 @@ flutter: dependencies: flutter: sdk: flutter - mapsindoors_mapbox_android: ^3.1.0 - mapsindoors_mapbox_ios: ^3.1.0 - mapsindoors_platform_interface: ^3.1.0 + mapsindoors_mapbox_android: ^3.1.1 + mapsindoors_mapbox_ios: ^3.1.1 + mapsindoors_platform_interface: ^3.1.1 dev_dependencies: diff --git a/pubspec_overrides.yaml b/pubspec_overrides.yaml new file mode 100644 index 0000000..fe75b88 --- /dev/null +++ b/pubspec_overrides.yaml @@ -0,0 +1,7 @@ +dependency_overrides: + mapsindoors_mapbox_android: + path: ../mapsindoors_mapbox_android + mapsindoors_mapbox_ios: + path: ../mapsindoors_mapbox_ios + mapsindoors_platform_interface: + path: ../../misdkfl-platform \ No newline at end of file