mirror of https://github.com/auygun/kaliber.git
36 lines
625 B
Groovy
36 lines
625 B
Groovy
// 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.1.0'
|
|
}
|
|
}
|
|
|
|
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"
|
|
}
|
|
}
|