first commit
This commit is contained in:
commit
89a2ce5cb8
83 changed files with 3433 additions and 0 deletions
26
android/build.gradle
Normal file
26
android/build.gradle
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
allprojects {
|
||||
repositories {
|
||||
google()
|
||||
mavenCentral()
|
||||
}
|
||||
}
|
||||
|
||||
rootProject.buildDir = "../build"
|
||||
subprojects {
|
||||
project.buildDir = "${rootProject.buildDir}/${project.name}"
|
||||
|
||||
afterEvaluate {project ->
|
||||
if (project.hasProperty("android")) {
|
||||
android {
|
||||
compileSdkVersion 36
|
||||
buildToolsVersion '33.0.1'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
project.evaluationDependsOn(":app")
|
||||
}
|
||||
|
||||
tasks.register("clean", Delete) {
|
||||
delete rootProject.buildDir
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue