GsonとRetrofitを使用してAPIとやりとりしたいと思います。ドキュメンテーションによると、私は私のプロジェクトのbuild.gradleに論文の行を追加します。gradle dslメソッドが見つかりません 'compile()'エラー:(10,0)
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
mavenCentral() //this line
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.3'
compile 'com.google.code.gson:gson:2.7' //this line
compile 'com.squareup.retrofit:retrofit:1.9.0' //this line
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
mavenCentral() //and this line
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
が、私はこれらのエラーを持っている:
Error:(10, 0) Gradle DSL method not found: 'compile()' Possible causes:
The project 'TempoEDF' may be using a version of the Android Gradle plug-in that does not contain the method (e.g. 'testCompile' was added in 1.1.0). Upgrade plugin to version 2.3.3 and sync project The project 'TempoEDF' may be using a version of Gradle that does not contain the method. Open Gradle wrapper file The build file may be missing a Gradle plugin. Apply Gradle plugin
だから私は私のIDEのようなのGradleプラグインがに望んで使用しました:
:Error:(10, 0) Plugin with id 'gradle' not found. Open File
dependencies {
classpath 'com.android.tools.build:gradle:2.3.3'
apply plugin: 'gradle'
compile 'com.google.code.gson:gson:2.7'
compile 'com.squareup.retrofit:retrofit:1.9.0'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
が、私はこのエラーを持っています
どうしたのですか?
これらの行をアプリレベルのgradleファイルに追加します – Onkar