diff --git a/sdk/python/packages/flet-permission-handler/CHANGELOG.md b/sdk/python/packages/flet-permission-handler/CHANGELOG.md index 452535c259..85895490bf 100644 --- a/sdk/python/packages/flet-permission-handler/CHANGELOG.md +++ b/sdk/python/packages/flet-permission-handler/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). +## 0.86.0 + +### Bug fixes + +* Removed platform restriction - `PermissionHandler` can now be used on `PagePlatform.ANDROID_TV`. Not officially supported by the underlying flutter `permission_handler` package, but most functionality works reliably across a wide range of Android TV builds. ([#6667](https://github.com/flet-dev/flet/pull/6667)). + ## 0.80.0 ## Added diff --git a/sdk/python/packages/flet-permission-handler/src/flet_permission_handler/permission_handler.py b/sdk/python/packages/flet-permission-handler/src/flet_permission_handler/permission_handler.py index 06f8d7a169..ec1d6571cf 100644 --- a/sdk/python/packages/flet-permission-handler/src/flet_permission_handler/permission_handler.py +++ b/sdk/python/packages/flet-permission-handler/src/flet_permission_handler/permission_handler.py @@ -27,6 +27,7 @@ def before_update(self): or self.page.platform in [ ft.PagePlatform.ANDROID, + ft.PagePlatform.ANDROID_TV, ft.PagePlatform.IOS, ft.PagePlatform.WINDOWS, ]