我从 GitHub 克隆的 Flutter 应用程序无法运行并显示这些错误

发布于 2025-01-11 21:34:57 字数 286 浏览 0 评论 0原文

  • 尝试: 使用 --stacktrace 选项运行以获取堆栈跟踪。使用 --info 或 --debug 选项运行以获得更多日志输出。使用 --scan 运行以获得完整的见解。

  • 访问 https://help.gradle.org

    获取更多帮助

12 秒内构建失败 异常:Gradle 任务 assembleDebug 失败,退出代码为 1

  • 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 12s
Exception: Gradle task assembleDebug failed with exit code 1

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

我们只是彼此的过ke 2025-01-18 21:34:57

详细的 StackOverflow 答案

当您在解压缩后打开其他人的项目并且您当前的 Android Studio 版本低于项目编译的版本。

解决这个问题的方法是

Go to Help and about to see your android studio version
go to File>Project Structure> and set your Android Gradle Plugin version to your android studio version
Change the Gradle version to the one you usually use.

构建项目,它应该运行没有任何错误

Detailed StackOverflow Answer

This usually happens when you're opening someone else's project after unzipping it and your current Android Studio Version is older to the version the project was compiled in.

The way to solve it is

Go to Help and about to see your android studio version
go to File>Project Structure> and set your Android Gradle Plugin version to your android studio version
Change the Gradle version to the one you usually use.

Build the project and it should run without any errors

我恋#小黄人 2025-01-18 21:34:57

app/src/build.gradle

defaultConfig {

        applicationId "com.example"
        minSdkVersion 19
        targetSdkVersion 31
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }

gradle-wrapper.properties

distributionUrl=https\://services.gradle.org/distributions/gradle-7.0.2-all.zip

android/build.gradle

dependencies {
    classpath 'com.android.tools.build:gradle:7.0.1'
}

你可以试试这个。

app/src/build.gradle

defaultConfig {

        applicationId "com.example"
        minSdkVersion 19
        targetSdkVersion 31
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }

gradle-wrapper.properties

distributionUrl=https\://services.gradle.org/distributions/gradle-7.0.2-all.zip

android/build.gradle

dependencies {
    classpath 'com.android.tools.build:gradle:7.0.1'
}

You can try this.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文