You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
435 B
22 lines
435 B
7 months ago
|
|
||
|
|
||
|
// BEGIN_EXCLUDE
|
||
|
import com.example.android.samples.build.SampleGenPlugin
|
||
|
apply plugin: SampleGenPlugin
|
||
|
|
||
|
samplegen {
|
||
|
pathToBuild "../../../../build"
|
||
|
pathToSamplesCommon "../../common"
|
||
|
}
|
||
|
apply from: "../../../../build/build.gradle"
|
||
|
buildscript {
|
||
|
ext.kotlin_version = '1.3.21'
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
}
|
||
|
dependencies {
|
||
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
||
|
}
|
||
|
}
|
||
|
// END_EXCLUDE
|