2015-09-19 17 views
6

私のアンドロイドプロジェクトiamをコンパイルしようとすると、次のエラーが発生します。ここで私のアンドロイドプロジェクトをコンパイルできません

Error:A problem occurred configuring project ':app'. 
    Could not resolve all dependencies for configuration ':app:_debugCompile'. 
    Could not find com.android.support:appcompat-v7:21.0.1. 
    Searched in the following locations: 
     https://jcenter.bintray.com/com/android/support/appcompat-v7/21.0.1/appcompat-v7-21.0.1.pom 
     https://jcenter.bintray.com/com/android/support/appcompat-v7/21.0.1/appcompat-v7-21.0.1.jar 
     file:/home/baman/Android/Sdk/extras/android/m2repository/com/android/support/appcompat-v7/21.0.1/appcompat-v7-21.0.1.pom 
     file:/home/baman/Android/Sdk/extras/android/m2repository/com/android/support/appcompat-v7/21.0.1/appcompat-v7-21.0.1.jar 
     file:/home/baman/Android/Sdk/extras/google/m2repository/com/android/support/appcompat-v7/21.0.1/appcompat-v7-21.0.1.pom 
     file:/home/baman/Android/Sdk/extras/google/m2repository/com/android/support/appcompat-v7/21.0.1/appcompat-v7-21.0.1.jar 
    Required by: 
     SriLankaTemples:app:unspecified 
    Could not find com.android.support:recyclerview-v7:21.0.1. 
    Searched in the following locations: 
     https://jcenter.bintray.com/com/android/support/recyclerview-v7/21.0.1/recyclerview-v7-21.0.1.pom 
     https://jcenter.bintray.com/com/android/support/recyclerview-v7/21.0.1/recyclerview-v7-21.0.1.jar 
     file:/home/baman/Android/Sdk/extras/android/m2repository/com/android/support/recyclerview-v7/21.0.1/recyclerview-v7-21.0.1.pom 
     file:/home/baman/Android/Sdk/extras/android/m2repository/com/android/support/recyclerview-v7/21.0.1/recyclerview-v7-21.0.1.jar 
     file:/home/baman/Android/Sdk/extras/google/m2repository/com/android/support/recyclerview-v7/21.0.1/recyclerview-v7-21.0.1.pom 
     file:/home/baman/Android/Sdk/extras/google/m2repository/com/android/support/recyclerview-v7/21.0.1/recyclerview-v7-21.0.1.jar 
    Required by: 
     SriLankaTemples:app:unspecified 

いくつかのいずれかが、これはあなたに感謝修正するために私を助けることができる私のGradleは

apply plugin: 'com.android.application' 

android { 
    compileSdkVersion 19 
    buildToolsVersion "23.0.0 rc2" 

    defaultConfig { 
     applicationId "lk.lankahomes.baman.srilankatemples" 
     minSdkVersion 16 
     targetSdkVersion 21 
     versionCode 1 
     versionName "1.0" 
    } 
    buildTypes { 
     release { 
      minifyEnabled false 
      proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 
     } 
    } 
} 

dependencies { 
    compile fileTree(include: ['*.jar'], dir: 'libs') 
    compile 'com.android.support:appcompat-v7:21.0.1' 
    compile 'com.android.support:recyclerview-v7:21.0.1' 
} 

ファイルです。

+2

それはAPPCOMPATとRecyclerviewライブラリを見つけることができませんでした。それらはインストールされていますか?あなたのファイルに言ったのと同じバージョンがインストールされていることを確認してください。あなたは23.0.1 – Sharj

答えて

7

それを逃しますために起こるthe 21.0.1サポートライブラリ用のは存在しません

あなたはこれらのbuild.gradle 1で使用することができます。

dependencies{ 

    //it requires compileSdkVersion 23 
    compile 'com.android.support:appcompat-v7:23.2.0' 
    compile 'com.android.support:appcompat-v7:23.1.1' 
    compile 'com.android.support:appcompat-v7:23.1.0' 
    compile 'com.android.support:appcompat-v7:23.0.1' 
    compile 'com.android.support:appcompat-v7:23.0.0' 

    //it requires compileSdkVersion 22 
    compile 'com.android.support:appcompat-v7:22.2.1' 
    compile 'com.android.support:appcompat-v7:22.2.0' 
    compile 'com.android.support:appcompat-v7:22.1.1' 
    compile 'com.android.support:appcompat-v7:22.1.0' 
    compile 'com.android.support:appcompat-v7:22.0.0' 

    //it requires compileSdkVersion 21 
    compile 'com.android.support:appcompat-v7:21.0.3' 
    compile 'com.android.support:appcompat-v7:21.0.2' 
    compile 'com.android.support:appcompat-v7:21.0.0' 

} 

同じ対価が、私は-v23.0.1ツールを構築、同様の問題とインストールAndroidのSDKに直面したとAndroidを呼ばcom.android.support:recyclerview-v7

1

私はbuildToolsVersion "23.0.0 rc2"行が問題を引き起こしていると思います。 buildToolsVersion "21.0.1"

かに

は変更それを試して

compileSdkVersion 21 
buildToolsVersion "22.0.1" 

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

とそうも正確であると述べているものsharj、あなたは多分ビルドツール

8

のためにも有効です。設定ガイドhttps://facebook.github.io/react-native/docs/android-setup.html#content

最新版のSDKマネージャの場合は「Androidサポートリポジトリ」が見つかりませんでした。このオプションは「サポートライブラリ用のローカルメインリポジトリ」に変更されていますies "と呼ぶ。

enter image description here

+1

であるSDKマネージャから最新バージョンをインストールすることができます。これは私の問題を解決しましたが、2011年7月15日の時点で "Android Support Repository" –

関連する問題