gpt4 book ai didi

android - 当我使用 ButterKnife 8.4.0 错误 : a exception:Error:Could not find com. android.support :support-annotations:24. 1.0

转载 作者:行者123 更新时间:2023-11-30 00:56:18 25 4
gpt4 key购买 nike

当我使用 ButterKnife 8.4.0 时发生错误:

exception:Error:Could not find com.android.support:support-annotations:24.1.01.

IDE为Android Studio 2.2,添加了apt。

这是我的build.gradle:

apply plugin: 'com.android.application'
apply plugin: 'android-apt'

android {
compileSdkVersion 24
buildToolsVersion "23.0.3"

defaultConfig {
minSdkVersion 14
targetSdkVersion 24
versionCode 1
versionName "1.0"
}

} dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'com.android.support:appcompat-v7:24.0.0-beta1'
compile 'com.jakewharton:butterknife:8.4.0'
apt 'com.jakewharton:butterknife-compiler:8.4.0'
}

最佳答案

需要匹配编译SDK版本、构建工具版本、目标SDK版本、支持库。如果你让你的应用程序支持 API 24,你需要将所有值更改为 API 24。像这样:

...

android {
compileSdkVersion 24 // Using API 24
buildToolsVersion "24.0.2" // Using API 24

defaultConfig {
minSdkVersion 14
targetSdkVersion 24 // Using API 24
versionCode 1
versionName "1.0"
}

} dependencies {
...
compile 'com.android.support:appcompat-v7:24.2.0' // Using the latest API support 24
...
}

关于android - 当我使用 ButterKnife 8.4.0 错误 : a exception:Error:Could not find com. android.support :support-annotations:24. 1.0,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40105114/

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