gpt4 book ai didi

android - Android Studio:Gradle Sync的v4支持库失败

转载 作者:行者123 更新时间:2023-12-03 04:46:56 25 4
gpt4 key购买 nike

我一直在关注Android片段教程,该教程要求通过遵循支持库设置文档here来设置项目以使用v4库。

这是我遵循的步骤。

1) Make sure you have downloaded the Android Support Repository using the SDK Manager.

2) Open the build.gradle file for your application.

3) Add the support library to the dependencies section. For example, to add the v4 support library, add the following lines:

dependencies {
...
compile "com.android.support:support-v4:24.1.1"
}


完成这三个步骤后,我会收到以下两个错误:
Gradle project sync failed...
Error:Could not find method compile() for arguments [com.android.support:support-v4:24.1.1] on object of type org.gradle.api.internal.artifacts.dsl.dependencies.DefaultDependencyHandler.

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

根据Android SDK Manager,我确实安装了Android支持存储库。

我将继续调查此问题,因为片段似乎是开发强大的Android移动应用程序的宝贵工具。帮助解决此问题将不胜感激。

如Sufian在以下评论中所要求的,这是我的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.1.3'
compile "com.android.support:support-v4:24.1.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
}

这是我的Android Standalone SDK Manager的 screenshot,显示已安装Android支持存储库。

最佳答案

您的项目中有两个build.gradle文件,一个根级别,一个用于应用程序。您还将在另一个build.gradle中看到一个依赖项部分。您需要在其中放置compile "com.android.support:support-v4:24.1.1"

关于android - Android Studio:Gradle Sync的v4支持库失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39002590/

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