Maintaining a common set of Eclipse preferences

You could of course export/import those settings. The other approach is to enable project specific settings for some settings. We have a very small Git repository with those kind of files: .settings/org.eclipse.jdt.core.prefs (compiler problem settings and formatter rules) .settings/org.eclipse.jdt.ui.pref (cleanup rules, common code templates) The common settings are just copied/merged in each projects .settings directory, … Read more

How can I disable compiler warnings in Eclipse on a file specific basis? [duplicate]

Ensure the files are under the gen folder, the typical home for all generated .java files. Then in the project properties, under Java Build Path, set Ignore optional compile problems for that folder to Yes. If your project structure requires your files be in a folder other than gen, add that folder to the Java … Read more

Can’t update Eclipse ADT to 22

I updated my tools to r22 using SDK Manager and ADT plugin using Eclipse’s “Check for Updates”. For some reason I still had: This Android SDK requires Android Developer Toolkit version 22.0.0 or above I resolved this by reinstalling Eclipse ADT plugin using Eclipse’s “Install New Software” feature and using https://dl-ssl.google.com/android/eclipse/ as the repo URL.