私はAndroid Studio 0.8.9を持っています。今までは、gradleファイルと正常に同期できましたが、今日開いたときに、次のエラーが発生します:
UnsupportedMethodException
Failed to set up Android modules in project 'Project': Unsupported method: SourceProvider.getJniDirectories().
The version of Gradle you connect to does not support that method.
To resolve the problem you can change/upgrade the target version of Gradle you connect to.
Alternatively, you can ignore this exception and read other information from the model.
これを解決するのを手伝ってくれませんか?ありがとう。
Justin で述べたように、Android Studio 0.9.0にアップグレードすると、この問題が修正されます。
この問題を修正するために、プロジェクトの最上位のbuild.gradleファイルのAndroidプラグインをクラスパス 'com.Android.tools.build:gradle:0.14.+'からクラスパス 'com.Android.tools.build:gradleにダウングレードしました:0.13。+ '
今のところ、私のプロジェクトbuild.gradeのbuildscriptメソッドは次のようになります
buildscript {
repositories {
mavenCentral()
}
dependencies {
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
classpath 'com.Android.tools.build:gradle:0.13.+'
}
}
バージョン.14にバグがあると思います。エラーレポートを送信しました。