Trevor Johns | b2c7a1f | 2016-08-16 14:30:29 -0700 | [diff] [blame] | 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. |
| 2 | buildscript { |
| 3 | repositories { |
| 4 | jcenter() |
| 5 | } |
| 6 | dependencies { |
Trevor Johns | e0003ef | 2017-12-13 19:02:19 -0800 | [diff] [blame] | 7 | classpath 'com.android.tools.build:gradle:3.0.0' |
Trevor Johns | b2c7a1f | 2016-08-16 14:30:29 -0700 | [diff] [blame] | 8 | } |
| 9 | } |
| 10 | |
| 11 | allprojects { |
| 12 | repositories { |
| 13 | jcenter() |
| 14 | } |
| 15 | } |
Trevor Johns | 9f4db3e | 2016-08-17 19:55:00 -0700 | [diff] [blame] | 16 | |
| 17 | // BEGIN_EXCLUDE |
| 18 | import com.example.android.samples.build.SampleGenPlugin |
| 19 | apply plugin: SampleGenPlugin |
| 20 | |
| 21 | samplegen { |
| 22 | pathToBuild "../../../../build" |
| 23 | pathToSamplesCommon "../../common" |
| 24 | } |
| 25 | apply from: "../../../../build/build.gradle" |
| 26 | // END_EXCLUDE |