gpt4 book ai didi

android - 在 gradle Android Studio 中找不到方法 compile()

转载 作者:行者123 更新时间:2023-11-29 01:14:46 25 4
gpt4 key购买 nike

我是 Android Studio 和 android 开发的新手,正在开发我的第一个应用程序。

我想使用 CarViewRecyclerView 来显示数据。根据很多教程,我需要添加以下依赖

compile 'com.android.support:cardview-v7:21.0.+'
compile 'com.android.support:recyclerview-v7:21.0.+'

这就是我的 build.gradle 的样子

// 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.2'

// 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
}

dependencies {
compile 'com.android.support:cardview-v7:21.0.+'
compile 'com.android.support:recyclerview-v7:21.0.+'
}

但是在 Sync gradle 上,它给出错误为

Error:Could not find method compile() for arguments [com.android.support:cardview-v7:21.0.+] on object of type org.gradle.api.internal.artifacts.dsl.dependencies.DefaultDependencyHandler.

Please install the Android Support Repository from the Android SDK Manager.

我尝试了 Google 搜索中的许多解决方案,但找不到任何可行的方法。

最佳答案

Android Studio 创建一个包含两个 build.gradle 文件的项目。

这段代码

dependencies {
compile 'com.android.support:cardview-v7:21.0.+'
compile 'com.android.support:recyclerview-v7:21.0.+'
}

进入项目的app/build.gradle。您还想将 21 版本号更新为您正在编译的 SDK。

之后,您还必须从 Android SDK 管理器安装 Android 支持存储库。

关于android - 在 gradle Android Studio 中找不到方法 compile(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40572266/

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