Skip to content

Commit 73065f0

Browse files
Merge pull request #16160 from nextcloud/settingsKTS
settings: adapt includeBuild to new syntax
2 parents 0758e25 + 1097d1e commit 73065f0

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

settings.gradle.kts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -39,16 +39,16 @@ dependencyResolutionManagement {
3939
maven("https://jitpack.io")
4040
}
4141
}
42-
//includeBuild("../android-common") {
42+
// includeBuild("../android-common") {
4343
// dependencySubstitution {
44-
// substitute module("com.github.nextcloud.android-common:ui") using project(":ui")
44+
// substitute(module("com.github.nextcloud.android-common:ui")).using(project(":ui"))
4545
// }
46-
//}
46+
// }
4747

48-
//includeBuild("../android-library") {
48+
// includeBuild("../android-library") {
4949
// dependencySubstitution {
50-
// substitute module('com.github.nextcloud:android-library') using project(':library') // broken on gradle 8.14.2, so use 8.13 if needed
50+
// substitute(module("com.github.nextcloud:android-library")).using(project(":library")) // broken on gradle 8.14.2, so use 8.13 if needed
5151
// }
52-
//}
52+
// }
5353

54-
include(":app", ":appscan")
54+
include(":app", ":appscan")

0 commit comments

Comments
 (0)