
This moves them out of them default location under src//. For instance, build-types/debug/java, build-types/debug/AndroidManifest.xml.

Move the tests to tests/java, tests/res, etc. I have two gradle.build files one in my root that looks like: // Top-level build file where you can add configuration options common to all sub-projects/modules.Ĭlasspath ':gradle:0.8.+'Īnd the one in my project which looks like: apply plugin: 'android'Ĭompile fileTree(dir: 'libs', include: '*.jar')Ĭompile ':support-v4:18.0.+'Ĭompile ':appcompat-v7:18.0.+' Gradle, you just need to add the following dependency to yourĬompile ':extra-abc:+'ĭoes this mean that I don't have to download the library and Gradle takes care of it so that I always have the latest version? I just don't know where to put the above line. The easiest way to add ActionBar-PullToRefresh to your project is via

I just made the switch from Eclipse to Android Studio so I am totally new to AS and Gradle. I am trying to implement ActionBar-PullToRefresh from.
