You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have newly downloaded everything and created a new flutter project. After that I added flutter_webview_plugin in the pubspec.yaml.
In my main.dart, I only created a sample webview like following.
Widget build(BuildContext context) {
return new MaterialApp(
routes: {
"/": (_) => new WebviewScaffold(
url: "https://www.google.com",
appBar: new AppBar(
title: new Text("Widget webview"),
),
)
},
);
}
I have newly downloaded everything and created a new flutter project. After that I added flutter_webview_plugin in the pubspec.yaml.
In my main.dart, I only created a sample webview like following.
Widget build(BuildContext context) {
return new MaterialApp(
routes: {
"/": (_) => new WebviewScaffold(
url: "https://www.google.com",
appBar: new AppBar(
title: new Text("Widget webview"),
),
)
},
);
}
When I run the flutter, I get following error.
Exit code 1 from: C:\Drive\soa6\flutter_soa\soa\android\gradlew.bat app:properties:
FAILURE: Build failed with an exception.
A problem occurred configuring project ':flutter_webview_plugin'.
Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.
Get more help at https://help.gradle.org
BUILD FAILED in 3s
Please review your Gradle project setup in the android/ folder.
The text was updated successfully, but these errors were encountered: