b5c155db1b
Also update the gitignore to ignore the '.cxx' directory AGP 3.5.0 uses for native build artifacts. Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
28 lines
416 B
Groovy
28 lines
416 B
Groovy
allprojects {
|
|
repositories {
|
|
google()
|
|
jcenter()
|
|
}
|
|
}
|
|
|
|
buildscript {
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:3.5.0'
|
|
}
|
|
repositories {
|
|
google()
|
|
jcenter()
|
|
}
|
|
}
|
|
|
|
task clean(type: Delete) {
|
|
delete rootProject.buildDir
|
|
}
|
|
|
|
tasks {
|
|
wrapper {
|
|
gradleVersion = "5.6.2"
|
|
distributionType = Wrapper.DistributionType.ALL
|
|
}
|
|
}
|