標籤:android style blog http io ar color os sp
概述
也不曉得為什麼,編譯eclipse,設定開啟,就自動報錯: An internal error occurred during: "Running Android Lint"
solution
開啟 eclipse根目錄下的 ‘eclipse.ini‘檔案,將有‘-Xms‘和‘-Xmx‘的兩行進行修改,
將原內容
1 -startup 2 plugins/org.eclipse.equinox.launcher_1.2.0.v20110502.jar 3 --launcher.library 4 plugins/org.eclipse.equinox.launcher.win32.win32.x86_64_1.1.100.v20110502 5 -product 6 org.eclipse.epp.package.jee.product 7 --launcher.defaultAction 8 openFile 9 --launcher.XXMaxPermSize10 256M11 -showsplash12 org.eclipse.platform13 --launcher.XXMaxPermSize14 256m15 --launcher.defaultAction16 openFile17 -vmargs18 -Dosgi.requiredJavaVersion=1.519 -Xms40m20 -Xmx512m
View Code
修改為
1 -startup 2 plugins/org.eclipse.equinox.launcher_1.2.0.v20110502.jar 3 --launcher.library 4 plugins/org.eclipse.equinox.launcher.win32.win32.x86_64_1.1.100.v20110502 5 -product 6 org.eclipse.epp.package.jee.product 7 --launcher.defaultAction 8 openFile 9 --launcher.XXMaxPermSize10 256M11 -showsplash12 org.eclipse.platform13 --launcher.XXMaxPermSize14 256m15 --launcher.defaultAction16 openFile17 -vmargs18 -Dosgi.requiredJavaVersion=1.519 -Xms512m <--修改這行-->20 -Xmx1024m <--修改這行-->
View Code
不過還是沒有解決.
eclipse - An internal error occurred during: "Running Android Lint"