I have attached four libraries in my project, but when I try to run this project, that time Eclipse show error dialog with error "Problem occurred with heap space". So what I have to do? Any idea related to this helps.
Asked
Active
Viewed 2,869 times
3
-
1**Eclipse** has a problem with the Heap on **your** machine. Not related to android. – Lukas Knuth Apr 13 '13 at 10:16
-
is Eclipse close down ? – ajduke Apr 13 '13 at 10:16
-
http://stackoverflow.com/questions/15393215/error-java-heap-size-in-eclipse-android/15393350#15393350 – Raghunandan Apr 13 '13 at 10:51
1 Answers
11
In your eclipse, installation folder find the eclipse.ini
and edit this file to increase size of heap as shown following
-Xms40m
-Xmx512m
to something more like
-Xms256m
-Xmx1024m
Edit :
Your eclipse.ini settings change will take effect only if you change following:
Run -> External Tools -> External ToolConfigurations.
go to configuration that u use, under jre tab -select option
Run in same JRE in workspace.
For more info on the topic have a look at this link.
-
-
Is is your system RAM less or something ? Accordingly specify Heap Size – ajduke Apr 13 '13 at 10:50
-
my system ram: 4 GB, processor core i3, and os: windows 8 - 64 bit – Hiren Patel Apr 13 '13 at 10:51
-
@HirenPatel glad the edit helped. Credit to ajduke for posting the snapshot – Raghunandan Apr 13 '13 at 11:10
-
1@Raghunandan good work at the end of answer, thanks !! (+1`d in other post answer which link you mentioned ) – ajduke Apr 13 '13 at 11:24