Files
22e1349-sotugyouseisaku/android/build.gradle.kts
2025-10-28 14:16:07 +09:00

32 lines
823 B
Kotlin
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
plugins {
// Android Gradle PluginAGP
id("com.android.application") version "8.7.3" apply false
// Kotlin PluginFlutter 3.35.5 推奨は 1.9.24
id("org.jetbrains.kotlin.android") apply false
// Flutter Gradle Plugin
id("dev.flutter.flutter-gradle-plugin") apply false
}
allprojects {
repositories {
google()
mavenCentral()
}
}
val newBuildDir: Directory = rootProject.layout.buildDirectory.dir("../../build").get()
rootProject.layout.buildDirectory.value(newBuildDir)
subprojects {
val newSubprojectBuildDir: Directory = newBuildDir.dir(project.name)
project.layout.buildDirectory.value(newSubprojectBuildDir)
}
subprojects {
project.evaluationDependsOn(":app")
}
tasks.register<Delete>("clean") {
delete(rootProject.layout.buildDirectory)
}