我正在尝试在我的颤振应用程序中加载我的网站内容。
我有一个链接https://dev.demo.hello.example.com/id/4
我尝试使用flutter_webview_plugin
&webview_flutter
两个插件,但在两个插件上我都遇到以下错误:
WF: === Starting WebFilter logging for process Runner
WF: _userSettingsForUser mobile: {
filterBlacklist = (
);
filterWhitelist = (
);
restrictWeb = 1;
useContentFilter = 0;
useContentFilterOverrides = 0;
whitelistEnabled = 0;
}
WF: _WebFilterIsActive returning: NO
我也试过在 info.plist 中提到 ATS 相关的东西
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
</dict>
但仍然面临同样的问题。我的链接中有https。
有什么解决办法吗?