blob: 0caebc0391c36c4b47ec71128b8a0ba01ed4cc84 [file] [log] [blame]
buildscript {
// This file is to test the gradle files merge that include a single value assignment with the equal identifier
ext.kotlin_version = '1.3.31'
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.0.0-beta6'
classpath 'com.example:another-plugin:1.0'
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}