Error:A problem occurred configuring root project 'Scanner'.
什么是问题?如何解决这个问题?
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.2.1'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
如果您在代理后面,请尝试Gradle代理配置。从您发布的错误日志来看,gradle似乎无法解析地址。确保gradle能上网。
另外,您可以尝试在jcenter()
中进行以下更改。
buildscript {
repositories {
jcenter {
url "http://jcenter.bintray.com/"
}
}
}
allprojects {
repositories {
jcenter {
url "http://jcenter.bintray.com/"
}
}
}
这多次解决了这个问题。
我在Gradle控制台得到这个错误 错误:配置根项目“QuakeReport”时出现问题。 无法解析配置“:classpath”的所有文件。找不到com.android.tools.build:gradle:3.0.0。在以下位置搜索:文件:/applications/Android Studio.app/contents/gradle/m2repository/com/android/tools
> try:使用--stacktrace选项运行以获取堆栈跟踪。使用--info或--debug选项运行以获得更多日志输出。使用--scan运行以获得完整的洞察力。 在https://help.gradle.org获得更多帮助 生成在33s中失败,分级任务assembleDebug失败,退出代码1已退出(sigterm)
我试图计算数字的百分比(取自一个文本字段),并将计算值设置为另一个表单字段。为此,我尝试了下面的代码,但我发现js正在检测的键事件/小数位数不匹配。 例如,如果我在第一个输入字段中提供100(以计算1.75的百分比),根据我的js代码,我预计是1.75,但在第二个文本字段中是0.175。我知道这是一个非常简单的计算,但我无法解决这个问题。
除了这一部分,我大部分都懂了: 我不知道这行是干什么的:
在Android Studio更新到2.3后,我得到以下错误。 错误:无法加载类“org.gradle.logging.StyledTextOutput”。此意外错误的可能原因包括: null null
. 提前致谢