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 {
|
2023-09-12 17:21:23 +00:00
|
|
|
classpath 'com.android.tools.build:gradle:8.1.0'
|
2020-04-13 11:24:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
jcenter()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
task clean(type: Delete) {
|
|
|
|
delete rootProject.buildDir
|
|
|
|
}
|
2023-08-29 10:54:06 +00:00
|
|
|
|
|
|
|
ext {
|
2023-09-04 18:05:57 +00:00
|
|
|
ndkVersion = '25.2.9519653'
|
|
|
|
minSdk = 24
|
|
|
|
compileSdk = 33
|
|
|
|
targetSdk = 33
|
|
|
|
|
2023-08-29 10:54:06 +00:00
|
|
|
if (!project.hasProperty('gn')) {
|
|
|
|
gn = "gn"
|
|
|
|
}
|
|
|
|
if (!project.hasProperty('ninja')) {
|
|
|
|
ninja = "ninja"
|
|
|
|
}
|
|
|
|
}
|