Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Merge adjustments
  • Loading branch information
westracer committed Dec 15, 2024
commit 0488b59b339664874a18b097d6e2de6dc1d1113e
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
## 4.3.0

* Adds WebSettings methods: `AndroidWebViewController.setAllowContentAccess`, `AndroidWebViewController.setGeolocationEnabled` and `AndroidWebViewController.setCacheMode`.

## 4.2.0

* Adds WebSettings methods: `AndroidWebViewController.setAllowFileAccess`, `AndroidWebViewController.setAllowContentAccess`, `AndroidWebViewController.setGeolocationEnabled` and `AndroidWebViewController.setCacheMode`.
* Adds support for configuring file access permissions. See `AndroidWebViewController.setAllowFileAccess`.

## 4.1.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -601,12 +601,6 @@ class AndroidWebViewController extends PlatformWebViewController {
Future<void> setTextZoom(int textZoom) =>
_webView.settings.setTextZoom(textZoom);

/// Enables or disables file access.
///
/// The default is false.
Future<void> setAllowFileAccess(bool enabled) =>
_webView.settings.setAllowFileAccess(enabled);

/// Enables or disables content URL access.
///
/// The default is true.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: webview_flutter_android
description: A Flutter plugin that provides a WebView widget on Android.
repository: https://github.com/flutter/packages/tree/main/packages/webview_flutter/webview_flutter_android
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+webview%22
version: 4.2.0
version: 4.3.0

environment:
sdk: ^3.5.0
Expand Down
Loading