gpt4 book ai didi

java - 未找到 Google Glass、Gradle DSL 方法 : 'android()'

转载 作者:行者123 更新时间:2023-12-01 09:19:45 26 4
gpt4 key购买 nike

有人给了我一个项目来帮助我,但我无法让它发挥作用,而那些给我这个项目的人也和我一样感到困惑。我们正在使用 Android Studio 2.1.2 为 Google Glass 制作 Android 软件。我们还设置了 SDK 等。

buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.1.2'
}
}
allprojects {
repositories {
jcenter()
}
}
android {
compileSdkVersion 'Google Inc.:Glass Development Kit Preview:19'
buildToolsVersion '23.0.1'
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_7
targetCompatibility JavaVersion.VERSION_1_7
}
}
dependencies {
}

这是主要的 build.gradle 文件。然后,在应用程序文件夹中,如果这很重要,则该文件位于其中。还有build.gradle。

apply plugin: 'com.android.application'
repositories {
jcenter()
}
android {
compileSdkVersion 'Google Inc.:Glass Development Kit Preview:19'
buildToolsVersion '23.0.1'
final def config = defaultConfig {
unimportant stuff
}
config
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_7
targetCompatibility JavaVersion.VERSION_1_7
}
buildTypes {
release {
things
}
}
dexOptions {
hopefully unimportant
}
productFlavors {
}
}
dependencies {
a considerable amount
}

现在,我遇到问题“未找到 Gradle DSL 方法:android()”。这里还有更多与此相关的问题。因此,根据回答者的建议,我尝试从顶部 gradle 中删除 android 和依赖项。我最终出现以下错误。 “无法设置 SDK。模块‘app’:找不到平台‘Google Inc.:Glass Development Kit Preview:19’。”尽管其他一切都已设置完毕。

现在,请注意,代码看起来显然是有效的,就像我从其那里获得代码的人一样。我这边出了点问题。请问一下网上的好心人,你们知道哪里出了问题吗?

最佳答案

您只能为应用了 android 插件的项目配置 android 扩展对象。由于您尚未将 android 插件应用到根项目,因此该项目中不存在 android 扩展对象,因此无法配置。我猜你打算在 main/root build.gradle 中执行以下操作

subprojects {
if (plugins.hasPlugin('com.android.application')) {
android {
// common configuration for all android modules goes here
}
}
}

关于样式的另一个注释,因为它位于根项目中:

allprojects {
repositories {
jcenter()
}
}

您可以从子项目中删除它

repositories {
jcenter()
}

关于java - 未找到 Google Glass、Gradle DSL 方法 : 'android()' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40242490/

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