Skip to content

Commit 7865f44

Browse files
author
danny
committed
Removed deprecated features
1 parent e5b4ccd commit 7865f44

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

macless_haystack/android/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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'
2222
subprojects {
23-
project.buildDir = "${rootProject.buildDir}/${project.name}"
23+
project.layout.buildDirectory = "${rootProject.layout.buildDirectory}/${project.name}"
2424
}
2525
subprojects {
2626
project.evaluationDependsOn(':app')
2727
}
2828

2929
tasks.register("clean", Delete) {
30-
delete rootProject.buildDir
30+
delete rootProject.layout.buildDirectory
3131
}

0 commit comments

Comments
 (0)