Unverified Commit 34232269 authored by William Hesse's avatar William Hesse Committed by GitHub

Fix flutter_tools use of --local-engine-host (#132648)

PR #132346 added the use of --local-engine-host to flutter_tools internals, and had an error on one line. Fix that error, to use the correct field name.

The error occurs when building plugins with the changed tools.
parent 5fd9fc17
......@@ -331,7 +331,7 @@ class FlutterPlugin implements Plugin<Project> {
if (!engineHostOut.isDirectory()) {
throw new GradleException('local-engine-host-out must point to a local engine host build')
}
localEngineHostOut = engineHostOut.name
localEngineHost = engineHostOut.name
}
project.android.buildTypes.all this.&addFlutterDependencies
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment