2

Androidスタジオとアンドロイドの開発に初めてで、初めてのアプリケーションを開発しました。Androidスタジオでコンパイルできませんでした

CarViewRecyclerViewを使用してデータを表示します。その上に多くのチュートリアルによると、私はこれは私の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.2' 

     // NOTE: Do not place your application dependencies here; they belong 
     // in the individual module build.gradle files 
    } 
} 

allprojects { 
    repositories { 
     jcenter() 
    } 
} 

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

dependencies { 
    compile 'com.android.support:cardview-v7:21.0.+' 
    compile 'com.android.support:recyclerview-v7:21.0.+' 
} 

しかし、同期のGradleであり、それは

Error:Could not find method compile() for arguments [com.android.support:cardview-v7:21.0.+] on object of type org.gradle.api.internal.artifacts.dsl.dependencies.DefaultDependencyHandler. 

Please install the Android Support Repository from the Android SDK Manager. 

私のようにエラーを与える方法です。次の依存関係に

compile 'com.android.support:cardview-v7:21.0.+' 
compile 'com.android.support:recyclerview-v7:21.0.+' 

を追加する必要がありますGoogleの検索では多くのソリューションを試しましたが、動作していませんでした。

答えて

1

Androidスタジオは、2つのbuild.gradleファイルを含むプロジェクトを作成します。

コード

dependencies { 
    compile 'com.android.support:cardview-v7:21.0.+' 
    compile 'com.android.support:recyclerview-v7:21.0.+' 
} 

のこのセクションでは、プロジェクトのapp/build.gradleに入ります。また、21バージョン番号をコンパイルするSDKに更新したいとします。

また、install the Android Support Repository from the Android SDK Manager.

0

このエラーでは、sdkマネージャーからAndroidサポートリポジトリをダウンロードしてインストールする必要があります。

Androidスタジオツールバーの[ツール]> [Android]> [SDKマネージャ]をクリックします。 [SDKツール]タブをクリックして[サポートリポジトリ]を検索し、AndroidサポートリポジトリとGoogleリポジトリを確認します。

[適用]ボタンをクリックし、リポジトリのダウンロードとインストールを待ちます。終了したら、SDKマネージャを終了し、再度Gradleを同期しようとします。

また、@ cricket_007によれば、依存関係をbuild.gradle (Module: ..)ファイルに移動します。
ファイル>プロジェクト構造(Ctrl + Shift + Alt + S)、モジュールの下のオプション(おそらくはapp)、タブDependenciesに移動し、緑色の+ボタンを押して、依存関係を追加することもできます。

関連する問題