【发布时间】:2020-05-14 18:07:25
【问题描述】:
Build file 'C:\Users\amani\Desktop\expenseapp\android\build.gradle' line: 24
* What went wrong:
A problem occurred evaluating root project 'android'.
> A problem occurred configuring project ':app'.
> Failed to find target with hash string 'android-28' in: C:\Users\amani\AppData\Local\Android\Sdk
* 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.
Launching lib\main.dart on ALE L21 in debug mode...
FAILURE: Build failed with an exception.
* Where:
* Get more help at https://help.gradle.org
BUILD FAILED in 2s
Gradle task assembleDebug failed with exit code 1
Exited (sigterm)
而android\build.gradle如下:
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.2.1'
}
}
allprojects {
repositories {
google()
jcenter()
}
}
rootProject.buildDir = '../build'
subprojects {
project.buildDir = "${rootProject.buildDir}/${project.name}"
}
subprojects {
project.evaluationDependsOn(':app')
}
task clean(type: Delete) {
delete rootProject.buildDir
}
谁能帮我解决这个问题?我尝试了许多其他在网上找到的解决方案,但似乎没有任何效果,而且我不知道该怎么做才能使这项工作发挥作用。
运行颤振医生命令返回:
Doctor summary (to see all details, run flutter doctor -v):
[√] Flutter (Channel stable, v1.12.13+hotfix.5, on Microsoft Windows [Version 10.0.18363.592], locale en-US)
[√] Android toolchain - develop for Android devices (Android SDK version 29.0.2)
[√] Android Studio (version 3.5)
[√] VS Code (version 1.41.1)
[√] Connected device (1 available)
• No issues found!
【问题讨论】:
-
如果您使用的是android studio,请尝试在终端中使用flutter clean命令,然后重建项目
标签: android gradle flutter build.gradle