gpt4 book ai didi

android - id 不工作工作室的插件

转载 作者:行者123 更新时间:2023-11-29 17:34:28 24 4
gpt4 key购买 nike

我正在尝试在 Android studio 中添加 google play 服务库。我已经在 build.gradle 中添加了 google play 服务。

但它现在对我有用。我已经提到了很多关于这个的 SO 帖子。但它并没有解决我的问题。

下面是我添加了 google play 服务的 build.gradle 代码。

enter image description here

build.gradle:

buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.2.3'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}

apply plugin : 'android'
dependencies {

compile 'com.google.android.gms:play-services:4.0.30'
}


allprojects {
repositories {
jcenter()
}
}

}

在 gradle compile com.google.android.gms:play-services:4.0.30 的依赖项中添加 google play 服务。我收到一个错误:id 不工作的插件。

任何人都可以帮助我。谢谢。

最佳答案

您发布的build.gradle 似乎是项目配置。全局项目 build.gradle 具有 buildscript 标记以及关于不添加应用程序依赖项的注释,如您的问题所示。

在您的应用程序模块中应该有另一个 build.gradle,根据您的 Android Studio 和 Gradle 版本,您还应该在其中找到类似的东西,

apply plugin: 'com.android.application'

android {
...
}

dependencies {
...
}

将你的 compile 'com.google.android.gms:play-services:4.0.30' 放在应用模块的 build.gradle 依赖项中

关于android - id 不工作工作室的插件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31290734/

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