kaliber/build/android/build.gradle

36 lines
625 B
Groovy
Raw Normal View History

2020-04-13 11:24:53 +00:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.0.1'
2020-04-13 11:24:53 +00:00
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
ext {
ndkVersion = '25.2.9519653'
minSdk = 24
compileSdk = 33
targetSdk = 33
if (!project.hasProperty('gn')) {
gn = "gn"
}
if (!project.hasProperty('ninja')) {
ninja = "ninja"
}
}