gpt4 book ai didi

android - 添加 Barcode_Scan 包后 Flutter 应用程序无法构建

转载 作者:IT王子 更新时间:2023-10-29 06:59:12 29 4
gpt4 key购买 nike

我是移动应用开发的新手,这是我第一次试用 Flutter。我正在尝试构建一个条码扫描器应用程序,在添加 barcode_scan 包并在项目中适当使用它之后,它无法成功构建。这是我在下面得到的错误

Could not GET 'https://jcenter.bintray.com/org/jetbrains/kotlin/kotlin-gradle-plugin-api/1.2.51/kotlin-gradle-plugin-api-1.2.51.jar'.

Connect to jcenter.bintray.com:443 [jcenter.bintray.com/5.153.35.248] failed: Connection timed out: connect * 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 2m 47s Command: C:\Flutter Solutions\test_solution\android\gradlew.bat app:properties Please review your Gradle project setup in the android/ folder.

我知道找不到 kotlin gradle 插件。但是我不知道如何添加插件。我正在使用 Visual Studio Code 进行开发。请帮忙。

查看我的 build.gradle 文件

buildscript {
ext.kotlin_version = '1.2.51'

repositories {
google()
jcenter()
}

dependencies {
classpath 'com.android.tools.build:gradle:3.2.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}

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
}

我以为添加 ext.kotlin-versionclasspath 依赖项会自动添加它,但那没有用。我需要指导。

最佳答案

嗯,它说“连接超时”,所以这不是真正的问题;您可以尝试添加更多比 jcenter() 更稳定的存储库。

allprojects {
repositories {
google()
mavenCentral()
maven { url "https://jitpack.io" }
jcenter()
}
}

关于android - 添加 Barcode_Scan 包后 Flutter 应用程序无法构建,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53893672/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com