Androidスタジオとアンドロイドの開発に初めてで、初めてのアプリケーションを開発しました。Androidスタジオでコンパイルできませんでした
CarView
とRecyclerView
を使用してデータを表示します。その上に多くのチュートリアルによると、私はこれは私の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の検索では多くのソリューションを試しましたが、動作していませんでした。