2016-12-02 7 views
0

ライブラリを統合するための助けが必要です。 アンドロイドプロジェクトのコンパイル中に次のエラーが発生しました。 com.github.npanigrahy:Custom-Calendar-View:v1.0を解決できませんでした。取得できませんでしたcom.github.npanigrahy:カスタムカレンダービュー:v1.0。グラデルビルド中にエラーが発生しました

トップレベルのbuild.gradle

// Top-level build file where you can add configuration options common to all sub-projects/modules. 

buildscript { 
    repositories { 
     jcenter() 
    } 
    dependencies { 
     classpath 'com.android.tools.build:gradle:2.2.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" } 
    } 
} 

task clean(type: Delete) { 
    delete rootProject.buildDir 
} 

プロジェクト

apply plugin: 'com.android.application' 

android { 
    compileSdkVersion 24 
    buildToolsVersion '24.0.1' 

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

dependencies { 
    compile fileTree(include: ['*.jar'], dir: 'libs') 
    testCompile 'junit:junit:4.12' 
    compile 'com.github.npanigrahy:Custom-Calendar-View:v1.0' 

    compile 'com.android.support:appcompat-v7:24.2.1' 
    compile 'com.android.support:cardview-v7:24.2.1' 
    compile 'com.android.support:design:24.2.1' 
    compile 'com.android.support:support-v4:24.2.1' 
    compile 'com.android.support:recyclerview-v7:24.+' 
} 

build.gradleスタックトレース事前に

Error:A problem occurred configuring project ':app'. 
Could not resolve all dependencies for configuration ':app:_debugApkCopy'. 
Could not resolve com.github.npanigrahy:Custom-Calendar-View:v1.0. 
Required by: 
STYYLE:app:unspecified 
> Could not resolve com.github.npanigrahy:Custom-Calendar-View:v1.0. 
> Could not get resource 'https://jcenter.bintray.com/com/github/npanigrahy/Custom-Calendar-View/v1.0/Custom-Calendar-View-v1.0.pom'. 
> Could not GET 'https://jcenter.bintray.com/com/github/npanigrahy/Custom-Calendar-View/v1.0/Custom-Calendar-View-v1.0.pom'. 
> RSA premaster secret error 
> Could not resolve com.github.npanigrahy:Custom-Calendar-View:v1.0. 
> Could not get resource 'https://repo1.maven.org/maven2/com/github/npanigrahy/Custom-Calendar-View/v1.0/Custom-Calendar-View-v1.0.pom'. 
> Could not GET 'https://repo1.maven.org/maven2/com/github/npanigrahy/Custom-Calendar-View/v1.0/Custom-Calendar-View-v1.0.pom'. 
> RSA premaster secret error 
> Could not resolve com.github.npanigrahy:Custom-Calendar-View:v1.0. 
> Could not get resource 'https://jitpack.io/com/github/npanigrahy/Custom-Calendar-View/v1.0/Custom-Calendar-View-v1.0.pom'. 
> Could not GET 'https://jitpack.io/com/github/npanigrahy/Custom-Calendar-View/v1.0/Custom-Calendar-View-v1.0.pom'. 
> RSA premaster secret error 

ありがとう:後

は、詳細なファイルです。

+0

キャッシュを無効にして再起動してから、再度同期してみてください。それは動作するはずです。私は今、ライブラリが動作していることを確認しました。 –

+0

私はこれをやろうとしましたが、それでも同じエラーが続きます。 :( – shraddha

答えて

0

私の場合、問題はJDK android studioが使用していました。 プロジェクト設定で埋め込みJDKに変更した後、エラーはなくなりました。

関連する問題