blob: 2f6b56181bebce20584cf58f20ff0946dece5c72 [file] [log] [blame]
Trevor Johnsb2c7a1f2016-08-16 14:30:29 -07001// Top-level build file where you can add configuration options common to all sub-projects/modules.
2buildscript {
3 repositories {
4 jcenter()
5 }
6 dependencies {
Trevor Johnse0003ef2017-12-13 19:02:19 -08007 classpath 'com.android.tools.build:gradle:3.0.0'
Trevor Johnsb2c7a1f2016-08-16 14:30:29 -07008 }
9}
10
11allprojects {
12 repositories {
13 jcenter()
14 }
15}
Trevor Johns9f4db3e2016-08-17 19:55:00 -070016
17// BEGIN_EXCLUDE
18import com.example.android.samples.build.SampleGenPlugin
19apply plugin: SampleGenPlugin
20
21samplegen {
22 pathToBuild "../../../../build"
23 pathToSamplesCommon "../../common"
24}
25apply from: "../../../../build/build.gradle"
26// END_EXCLUDE