material-dialogs library:找不到:com.android.support:appcompat-v7:21.0.3

时间:2015-02-27 09:42:42

标签: android android-studio

我要将material-dialogs库添加到我的项目中,但是我收到此错误Error:Failed to find: com.android.support:appcompat-v7:21.0.3这是build.gradle ..我的错误在哪里?我的项目是错误的吗?

apply plugin: 'com.android.application'

android {
compileSdkVersion 21
buildToolsVersion "21.1.1"

defaultConfig {
    applicationId "com.peomtime.tosca.peomtime"
    minSdkVersion 15
    targetSdkVersion 21
    versionCode 1
    versionName "1.0"
}
buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
}
}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])

compile 'com.android.support:support-v4:21.0.2'
compile 'com.android.support:appcompat-v7:21.0.+'
compile 'de.hdodenhof:circleimageview:1.2.0'
compile 'com.readystatesoftware.systembartint:systembartint:1.0.3'
//Core
compile 'com.github.gabrielemariotti.cards:cardslib-core:2.0.1'
compile 'com.github.machinarius:preferencefragment:0.1.1'

//compile 'com.github.nirhart:parallaxscroll:1.0'
compile project(':Parallax')

compile 'com.nostra13.universalimageloader:universal-image-loader:1.9.3'

compile 'com.afollestad:material-dialogs:0.6.3.1'
}

非常感谢你的帮助

2 个答案:

答案 0 :(得分:1)

检查您是否在Android SDK Manager中安装了最新的库。对于appcompat-v7:21.0.3,需要检查/更新的包是:

  • Android支持存储库
  • Android支持库

此外,建议修复您的依赖项版本,而不是使用+来获取最新版本:

compile 'com.android.support:appcompat-v7:21.0.3'

答案 1 :(得分:0)

不知道为什么,但我将这个来自Afollestad的回购添加到我的build.gradle(项目,而非模型),一切都解决了。

repositories {
    maven { url "https://jitpack.io" }
}

link