1/** 2 * Build the file with local dependencies. This is typically the build file you want to use when 3 * building from the Android source tree. The difference between this and standalone.gradle is that 4 * this will build the dependencies like support libraries from source, whereas standalone.gradle 5 * will get it from maven central. 6 * 7 * For example, you can include the following in your settings.gradle file: 8 * include ':setup-wizard-lib' 9 * project(':setup-wizard-lib').projectDir = new File(PATH_TO_THIS_DIRECTORY) 10 * 11 * And then you can include the :setup-wizard-lib project as one of your dependencies 12 * dependencies { 13 * compile project(path: ':setup-wizard-lib', configuration: 'icsCompatRelease') 14 * } 15 */ 16 17apply plugin: 'dist' 18 19ext { 20 // For builds in the Android tree we want to build the dependencies from source for reproducible 21 // builds. To add a dependency, you want to specify something like this: 22 // ext { 23 // deps = ['project-name': project(':project-path')] 24 // } 25 // 26 // And then in rules.gradle you can reference the dependency by 27 // dependencies { 28 // compile deps['project-name'] 29 // } 30 // 31 deps = ['support-appcompat-v7': project(':support-appcompat-v7')] 32} 33 34apply from: 'rules.gradle' 35