在Android工作室找不到com.android.support:appcompat-v7:25.3.1?

时间:2017-06-05 15:51:53

标签: android android-studio gradle android-build

我正在尝试将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文件

(建议后编辑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'
    }
}

任何帮助都会很明显

1 个答案:

答案 0 :(得分:2)

要使用compile 'com.android.support:appcompat-v7:25.3.1'compileSdkVersion必须 25 ,请进行更新。

以同样的方式,考虑将您的buildToolsVersion升级到版本 25.0.3