2016-01-25 218 views
1

我正在嘗試將PrismView lib集成到我的項目中。我在項目build.gradle中包含jitpack.io,下面是代碼片段。無法解決jitpack.io依賴關係

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' 
} 

但在同步它給以下錯誤:

Error:(24, 13) Failed to resolve: com.github.ppamorim:PrismView:0.3 

任何鉛來解決,這將是很有益的。

回答

1

用途:

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

應該只是一個簡單的拼寫錯誤。

+0

謝謝,它的工作原理。但我仍然無法使用它的功能:(任何幫助??? – Krishnakant

1

與小寫使用它:https://github.com/ppamorim/PrismView

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

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

這裏是你的,看你的錯誤/錯字什麼:

compile 'com.github.ppamorim:PrismView:0.3'

+0

謝謝,它的工作。但我仍然無法使用它的功能:(任何幫助??? – Krishnakant

+0

讓我們看看代碼,看看你是什麼通過創建另一個問題來做到這一點。另外,總是有一個示例:https://github.com/ppamorim/PrismView/tree/master/sample – Mohsen