How to use Gradle to generate Eclipse and Intellij project files for Android projects

Gradle itself is a generic build tool, it is not created specifically for Android. All the functionality is enabled using plug-ins. Traditionally, build plug-ins don’t generate project structure. That’s the job of project specific tools. The Android plug-in for Gradle follows this. The problem is that current android tool in SDK generates old type of … Read more

Attaching additional javadoc in Intellij IDEA

You can attach javadoc to any library you have configure in your module or project. Just access the project structure windows (File -> Project Structure), then select “modules” and select the module that has the dependency you want to configure. Then select the “Dependencies” tab, select the dependency that’s missing the javadoc and click “Edit”. … Read more