Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,5 @@ org.gradle.configuration-cache=true
org.gradle.workers.max=4

# Needed for local libs
# org.gradle.dependency.verification=lenient
# org.gradle.dependency.verification=off
# systemProp.org.gradle.internal.publish.checksums.insecure=true
38 changes: 27 additions & 11 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
/*
* Nextcloud - Android Client
*
* SPDX-FileCopyrightText: 2026 Alper Ozturk <alper.ozturk@nextcloud.com>
* SPDX-FileCopyrightText: 2025 Jimly Asshiddiqy <jimly.asshiddiqy@accenture.com>
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
Expand Down Expand Up @@ -42,16 +43,31 @@ dependencyResolutionManagement {
maven("https://jitpack.io")
}
}
// includeBuild("../android-common") {
// dependencySubstitution {
// substitute(module("com.github.nextcloud.android-common:ui")).using(project(":ui"))
// }
// }

// includeBuild("../android-library") {
// dependencySubstitution {
// substitute(module("com.github.nextcloud:android-library")).using(project(":library")) // broken on gradle 8.14.2, so use 8.13 if needed
// }
// }

/*
Needed for local android library

includeBuild("../android_library") {
dependencySubstitution {
substitute(module("com.github.nextcloud:android-library"))
.using(project(":library"))
}
}
*/


/*
Needed for local android common library

includeBuild("../android_common") {
dependencySubstitution {
substitute(module("com.github.nextcloud.android-common:core"))
.using(project(":core"))

substitute(module("com.github.nextcloud.android-common:ui"))
.using(project(":ui"))
}
}
*/

include(":app", ":appscan")
Loading