2016-07-20 2 views
0

を追加します。事前にError:(23, 13) Failed to resolve: com.github.npanigrahy:Custom-Calendar-View:v1.0カント私は私のgradle.build で<code>compile 'com.github.npanigrahy:Custom-Calendar-View:v1.0'</code> を追加するとき、それはエラーになりますカスタムカレンダーパッケージ

感謝

+0

あなたがjitpack.io依存関係を追加したことがありますか? –

+0

はい私はそれらを加えました – ashikj95

+0

あなたはlogcatを投稿できます –

答えて

0

まず、あなたはあなたのアンドロイド・スタジオの設定を確認する必要があり、 httpプロキシを設定していますか?第三に

https://github.com/npanigrahy/Custom-Calendar-Viewでチュートリアルに従って、第二に

は、あなたのプロジェクトに続い依存最寄りのmatchineへの依存をダウンロードしますか?

0

build.gradle(プロジェクト:カレンダー)でこれを使用して、build.gradleで

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

そして、このファイル(モジュール:アプリ)

dependencies { 
    compile 'com.github.npanigrahy:Custom-Calendar-View:v1.0' 
} 
関連する問題