File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ buildscript {
66 }
77
88 dependencies {
9- classpath ' com.android.tools.build:gradle:8.6.0 '
9+ classpath ' com.android.tools.build:gradle:8.6.1 '
1010 classpath " org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version "
1111 }
1212}
@@ -18,14 +18,14 @@ allprojects {
1818 }
1919}
2020
21- rootProject. buildDir = ' ../build'
21+ rootProject. layout . buildDirectory = ' ../build'
2222subprojects {
23- project. buildDir = " ${ rootProject.buildDir } /${ project.name} "
23+ project. layout . buildDirectory = " ${ rootProject.layout.buildDirectory } /${ project.name} "
2424}
2525subprojects {
2626 project. evaluationDependsOn(' :app' )
2727}
2828
2929tasks. register(" clean" , Delete ) {
30- delete rootProject. buildDir
30+ delete rootProject. layout . buildDirectory
3131}
You can’t perform that action at this time.
0 commit comments