无法解析jitpack.io依赖项

时间:2016-01-25 11:29:57

标签: android android-studio gradle android-gradle

我正在尝试将PrismView lib集成到我的项目中。我在项目build.gradle中包含了jitpack.io,下面是代码片段。

Func<double[], double>

并在项目模块中包含依赖项,如下所示:

buildscript {
   repositories {
    jcenter()
}

dependencies {
    classpath 'com.android.tools.build:gradle:1.5.0'
    // NOTE: Do not place your application dependencies here; they belong
    // in the individual module build.gradle files
}
}

allprojects {
  repositories {
    jcenter()
    maven { url "https://jitpack.io" }
}
}

但是在同步时会出现以下错误:

dependencies {
   compile fileTree(dir: 'libs', include: ['*.jar'])
   compile 'com.android.support:appcompat-v7:23.1.0'
   compile 'com.android.support:design:23.1.0'
   compile 'com.github.ppamorim:PrismView:0.3'
}

任何解决此问题的方法都会非常有用。

2 个答案:

答案 0 :(得分:1)

使用:

dependencies {
    compile 'com.github.ppamorim:prismview:0.3'
}

应该只是一个简单的错字。

答案 1 :(得分:1)

使用小写字母:https://github.com/ppamorim/PrismView

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

dependencies {
  compile 'com.github.ppamorim:prismview:0.3'
}

这是你的,看看你的错误/错字:

  

compile&#39; com.github.ppamorim: P rismView:0.3&#39;