1 buildscript { 2 repositories { 3 jcenter() 4 google() 5 } 6 7 dependencies { 8 classpath 'com.android.tools.build:gradle:3.0.1' 9 } 10 } 11 12 // BEGIN_EXCLUDE 13 import com.example.android.samples.build.SampleGenPlugin 14 apply plugin: SampleGenPlugin 15 16 samplegen { 17 pathToBuild "../../../../build" 18 pathToSamplesCommon "../../common" 19 } 20 apply from: "../../../../build/build.gradle" 21 // END_EXCLUDE 22