diff --git a/gradle.properties b/gradle.properties index dd9ffff87b42..3b0e6a7753d6 100644 --- a/gradle.properties +++ b/gradle.properties @@ -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 diff --git a/settings.gradle.kts b/settings.gradle.kts index 1e9624e78ec5..c7fe1c644284 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -1,6 +1,7 @@ /* * Nextcloud - Android Client * + * SPDX-FileCopyrightText: 2026 Alper Ozturk * SPDX-FileCopyrightText: 2025 Jimly Asshiddiqy * SPDX-License-Identifier: AGPL-3.0-or-later */ @@ -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")