gpt4 book ai didi

android - 为什么 gradle 说它无法解析 "com.android.support:support-annotations:23.1.1"?

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

我正在构建一个名为 Shaking 的应用程序。今天在项目中添加了一些按钮库,即:

引导按钮:https://android-arsenal.com/details/1/65

平面按钮:https://android-arsenal.com/details/1/68

我在 build.gradle 文件的 dependencies block 中添加了以下内容:

compile 'com.beardedhen:androidbootstrap:2.0.1' //This is the bootstrap library
compile 'info.hoang8f:fbutton:1.0.5' //This is the flat buttons library

正如上面的网页所说。

然后弹出一个错误提示:

Error:Failed to resolve: com.android.support:support-annotations:23.1.1

一段时间后,我发现是引导按钮库导致了问题,因为如果我注释掉该行,就没有错误!

我尝试关闭 Android Studio 并再次打开它并清理项目、重建...但都没有用。

然后我找到了这个question
我认为我遇到的问题与此非常相似,所以我按照第二个答案建议的步骤进行操作。这次又出现了一个错误:

Error:failed to find target android-23 : C:\Users\User\AppData\Local\Android\sdk

我想我没有安装 SDK 23。

我真的很想知道为什么会这样,我该如何解决!

最佳答案

下面是com.beardedhen:androidbootstrap:2.0.1的build.gradle:

apply plugin: 'com.android.library'
apply from: 'push.gradle'

android {
compileSdkVersion 23
buildToolsVersion "23.0.1"

defaultConfig {
minSdkVersion 11
targetSdkVersion 23
versionCode = Integer.parseInt(VERSION_CODE)
versionName = VERSION_NAME
}
}

dependencies {
compile 'com.android.support:support-annotations:23.1.1'
}

可以看到编译'com.android.support:support-annotations:23.1.1'。

确保您已经安装了 android 支持库 23.1.1:

enter image description here

关于android - 为什么 gradle 说它无法解析 "com.android.support:support-annotations:23.1.1"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34217658/

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