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