私は安定したチャンネルから第5 '2016年4月に構築されたバージョン2.0へのAndroidメーカーを更新したと私は私のプロジェクトをビルドしようとすると、今、私は奇妙なエラーを持っている:のAndroid Studioの2.0ビルドのGradleエラー
EnclosingMethod属性に関連付けられていない匿名内部クラス (org.apache.commons.collections.BeanMap $ 1)のInnerClasses属性を無視します。このクラスはおそらく最新の.classファイル形式をターゲットとしていないコンパイラによって で生成されました。 推奨される解決策は、 最新のコンパイラを使用し、 "-target"タイプオプションを指定せずに、クラスをソースから再コンパイルすることです。 この警告を無視した結果、このクラスの反射操作 は、ではなく、の内部 クラスであることを間違って示します。
である私の依存関係は:
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'com.android.support:appcompat-v7:23.3.0'
compile 'me.dm7.barcodescanner:zxing:1.7.2'
compile 'com.github.navasmdc:MaterialDesign:[email protected]'
compile 'com.github.rey5137:material:1.1.1'
compile 'com.rengwuxian.materialedittext:library:2.1.4'
compile files('libs/java-json.jar')
compile 'com.google.code.gson:gson:2.4'
compile 'se.emilsjolander:stickylistheaders:2.7.0'
compile('com.thoughtworks.xstream:xstream:1.4.7') {
exclude group: 'xmlpull', module: 'xmlpull'
}
compile ('com.github.ganfra:material-spinner:1.1.0'){
exclude group: 'com.nineoldandroids', module: 'library'
exclude group: 'com.android.support', module: 'appcompat-v7'
}
compile 'ch.qos.logback:logback-core:1.1.7'
compile 'org.slf4j:slf4j-api:1.7.21'
}
すべてのヘルプは高く評価されるだろう。
私は正確に同じ問題を抱えています。あなたはコンパイル中にラグを経験していますか?私のi7と32GBのRAMとSSDはとても難しいので、4〜5分間コンパイルしている間はマウスを動かすことができません。まったく同じプロジェクトでAndroid Studio 1.5にこの問題はありませんでした。 – JFreeman
"コンパイル中に遅延がありますか?" - はい!!!それは完了するまで、私のシステムをほぼ完全にフリーズします。 – whizzzkey