Cannot create Maven Project in eclipse

Same problem here, solved. I will explain the problem and the solution, to help others. My software is: Windows 7 Eclipse 4.4.1 (Luna SR1) m2e 1.5.0.20140606-0033 (from eclipse repository: http://download.eclipse.org/releases/luna) And I’m accessing internet through a proxy. My problem was the same: Just installed m2e, went to menu: File > New > Other > Maven … Read more

Saving Logcat to a text file in Android Device

Use an Application class at the beginning of your app. That allows a proper file and log handling. Code below creates a log file at the following location: /ExternalStorage/MyPersonalAppFolder/logs/logcat_XXX.txt XXX is the current time in milliseconds. Every time you run your app, a new logcat_XXX.txt file will be created. public class MyPersonalApp extends Application { … Read more