最近私は新しいAndroid Appを開始しましたが、私はこのプロジェクトを構築することを避けている、非常に迷惑なエラーに遭遇しています。Gradleは作成しないでください:app:mergeDebugResources failure
Information:Gradle tasks [clean, :app:generateDebugSources, :app:mockableAndroidJar, :app:prepareDebugUnitTestDependencies, :app:generateDebugAndroidTestSources, :app:compileDebugSources, :app:compileDebugUnitTestSources, :app:compileDebugAndroidTestSources]
Observed package id 'add-ons;addon-google_apis-google-23' in inconsistent location 'C:\Users\Fabio\AppData\Local\Android\Sdk\add-ons\addon-google_apis-google-23-1' (Expected 'C:\Users\Fabio\AppData\Local\Android\Sdk\add-ons\addon-google_apis-google-23')
Already observed package id 'add-ons;addon-google_apis-google-23' in 'C:\Users\Fabio\AppData\Local\Android\Sdk\add-ons\addon-google_apis-google-23'. Skipping duplicate at 'C:\Users\Fabio\AppData\Local\Android\Sdk\add-ons\addon-google_apis-google-23-1'
:clean UP-TO-DATE
:app:clean
:app:preBuild UP-TO-DATE
:app:preDebugBuild UP-TO-DATE
:app:checkDebugManifest
:app:preReleaseBuild UP-TO-DATE
:app:prepareComAndroidSupportAnimatedVectorDrawable2400Library
:app:prepareComAndroidSupportAppcompatV72400Library
:app:prepareComAndroidSupportDesign2400Library
:app:prepareComAndroidSupportRecyclerviewV72400Library
:app:prepareComAndroidSupportSupportV42400Library
:app:prepareComAndroidSupportSupportVectorDrawable2400Library
:app:prepareDebugDependencies
:app:compileDebugAidl
:app:compileDebugRenderscript
:app:generateDebugBuildConfig
:app:mergeDebugShaders
:app:compileDebugShaders
:app:generateDebugAssets
:app:mergeDebugAssets
:app:generateDebugResValues UP-TO-DATE
:app:generateDebugResources
:app:mergeDebugResources
java.lang.OutOfMemoryError: Java heap space
:app:mergeDebugResources FAILED
Error:Execution failed for task ':app:mergeDebugResources'.
> java.lang.OutOfMemoryError: Java heap space
radle.properties file.
For example, the following line, in the gradle.properties file, sets the maximum Java heap size to 1,024 MB:
<em>org.gradle.jvmargs=-Xmx1024m</em>
<a href="http://www.gradle.org/docs/current/userguide/build_environment.html">Read Gradle's configuration guide</a><br><a href="http://docs.oracle.com/javase/7/docs/technotes/guides/vm/gc-ergonomics.html">Read about Java's heap size</a>
Information:BUILD FAILED
Information:Total time: 9.513 secs
Information:1 error
Information:0 warnings
Information:See complete output in console
問題は、ビルドのこのPARTEであるように思わ:
:app:mergeDebugResources
java.lang.OutOfMemoryError: Java heap space
:app:mergeDebugResources FAILED
Error:Execution failed for task ':app:mergeDebugResources'.
> java.lang.OutOfMemoryError: Java heap space
私はこのアプリを開始しています。それには2つのアクティビティと4つのディスプレイしかありません。少数の弦や画像にもかかわらずほとんどリソースがありません。ヒープメモリーに問題があるのはなぜですか?私は2つのアンドロイドスタジオプロジェクトを同時に開いているからでしょうか?
私が使用している: -Gradleバージョンを2.10 -Androidプラグインのバージョン2.1.2
私はすでに「クリーンプロジェクト」、「プロジェクトを再構築」、「Gradleのファイルと同期プロジェクト」を走ってきました。それは助けになりませんでした。
ありがとうございました!
おそらく。またはあなたのプロジェクトは本当に大きいです。設定ファイルのヒープサイズを増やしてください。これは、メモリをスローすることが適切な解決策である場合です。 –
こんにちは@GabeSechan。私はプロジェクトがそれほど大きいとは思わない。私はちょうどそれを始めた、それは2つの活動があります。私はそれがプロジェクトのサイズになるとは思わない... – FTM
ちょうど小さなJavaヒープがあったのでなければ、それはそれのようには聞こえません。 –