在 android 设备上尝试 运行 flutter 应用程序时出现异常
Exception while trying to run flutter app on android device
我开发了一个 flutter 项目,这个项目在我的 ios 刺激器上运行良好,但在我的 android phone 上 运行(物理 phone ).我在尝试 运行 项目时遇到异常。
这是什么原因?
Exception
:
What went wrong:
A problem occurred evaluating project ':app'.
> Failed to apply plugin 'com.android.internal.version-check'.
> Cannot parse project property android.enableJetifier='true ' of type 'class java.lang.String' as boolean. Expected 'true' or 'false'.
* Try:
> Run with --stacktrace option to get the stack trace.
> Run with --info or --debug option to get more log output.
> Run with --scan to get full insights.
* Get more help at https://help.gradle.org
BUILD FAILED in 968ms
Exception: Gradle task assembleDebug failed with exit code 1
Exited (sigterm)
在 gradle.properties 中检查您是否有 android.enableJetifier=true 后面没有 space。
只需从 'true '
中删除最后一个 space
android.enableJetifier='true '
这样说
android.enableJetifier=true
android.useAndroidX=true
我开发了一个 flutter 项目,这个项目在我的 ios 刺激器上运行良好,但在我的 android phone 上 运行(物理 phone ).我在尝试 运行 项目时遇到异常。
这是什么原因?
Exception
:
What went wrong:
A problem occurred evaluating project ':app'.
> Failed to apply plugin 'com.android.internal.version-check'.
> Cannot parse project property android.enableJetifier='true ' of type 'class java.lang.String' as boolean. Expected 'true' or 'false'.
* Try:
> Run with --stacktrace option to get the stack trace.
> Run with --info or --debug option to get more log output.
> Run with --scan to get full insights.
* Get more help at https://help.gradle.org
BUILD FAILED in 968ms
Exception: Gradle task assembleDebug failed with exit code 1
Exited (sigterm)
在 gradle.properties 中检查您是否有 android.enableJetifier=true 后面没有 space。
只需从 'true '
android.enableJetifier='true '
这样说
android.enableJetifier=true
android.useAndroidX=true