我正在尝试将floating search view
library添加到我的Android应用中。添加我得到的依赖项后:
Error:Could not find com.android.support:appcompat-v7:25.3.1.
Required by:
project :app
Please install the Android Support Repository from the Android SDK Manager.
因此,我已将以下依赖项添加到我的模块Gradle
文件中:
compile 'com.android.support:appcompat-v7:25.3.1'
compile 'com.android.support:design:25.3.1'
compile 'com.android.support:multidex:1.0.1'
compile 'com.android.support:percent:25.3.1'
compile 'com.android.support:support-v4:25.3.1'
compile 'com.android.support:support-v13:25.3.1'
同步Gradle
文件后,我收到了同样的错误。然后我清理项目甚至https://github.com/arimorty/floatingsearchview Invalidate cache
到项目,但响应相同。
我的Android Studio
已更新,并且已安装API级别25。
我在这里做错了什么?
(建议后编辑Gradle文件)
android {
compileSdkVersion 25
buildToolsVersion '25.0.3'
defaultConfig {
applicationId "com.app.seeker"
minSdkVersion 21
targetSdkVersion 25
versionCode 1
multiDexEnabled true
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
任何帮助都会很明显
答案 0 :(得分:2)
要使用compile 'com.android.support:appcompat-v7:25.3.1'
,compileSdkVersion
必须 25 ,请进行更新。
以同样的方式,考虑将您的buildToolsVersion
升级到版本 25.0.3